-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
45 lines (45 loc) · 1.24 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": "prestafy/category-faq",
"description": "FAQ with Categories Extension for Magento 2.3",
"version": "0.0.1",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Prestafy eCommerce Solutions",
"homepage": "https://www.prestafy.com.br/"
}
],
"repositories": {
"magento": {
"type": "git",
"url": "git@github.com:andresams/category-faq.git"
}
},
"require": {
"magento/framework": "101.0.*|102.0.*",
"magento/module-backend": "100.2.*|101.0.*"
},
"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": {
"Prestafy\\Faq\\": ""
}
}
}