forked from mcspronko/selective-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.22 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
{
"name": "pronko/selective-cache",
"description": "Selective Cache extension for Magento 2",
"version": "1.1.0",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Pronko Consulting",
"homepage": "https://www.pronkoconsulting.com/"
}
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require": {
"magento/framework": "~101|~102|~103",
"magento/module-backend": "~100|~101|~102"
},
"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/"
]
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Pronko\\SelectiveCache\\": ""
}
}
}