forked from magento/magento-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 830 Bytes
/
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
{
"name": "magento/magento-coding-standard",
"description": "A set of Magento specific PHP CodeSniffer rules.",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"type": "phpcodesniffer-standard",
"version": "6",
"require": {
"php": ">=5.6.0",
"squizlabs/php_codesniffer": "^3.5",
"webonyx/graphql-php": ">=0.12.6 <1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"classmap": [
"PHP_CodeSniffer/Tokenizers/"
],
"psr-4": {
"Magento2\\": "Magento2/"
}
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths ../../..",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths ../../.."
}
}