-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
51 lines (51 loc) · 1.41 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "prestafy/magento2-cart-popup",
"description": "Responsive Added to Cart Popup for Magento 2.3",
"replace": {
"prestafy/popup-admin": "self.version",
"prestafy/popup-display": "self.version"
},
"license": "Simplified BSD License",
"require": {
"magento/framework": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.5",
"magento/magento-coding-standard": "~2.0"
},
"scripts": {
"test-unit": "vendor/phpunit/phpunit/phpunit Test/Unit",
"test-phpcs": "vendor/bin/phpcs --standard=Magento2 ./Controller/ ./Plugin/ ./Service/ ./Test/ ./etc/ i18n/",
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
]
},
"type": "magento2-metapackage",
"version": "1.0.0",
"authors": [
{
"name": "Andresa Martins",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"files": [
"popup-admin/registration.php",
"popup-display/registration.php"
],
"psr-4": {
"Prestafy\\PopupAdmin\\": "popup-admin",
"Prestafy\\PopupDisplay\\": "popup-display"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}