-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
43 lines (43 loc) · 1.23 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
{
"name": "extdn/phpcs",
"description": "A set of PHP_CodeSniffer rules and sniffs.",
"homepage": "https://github.com/extdn/extdn-phpcs",
"license": "MIT",
"type": "phpcodesniffer-standard",
"authors": [
{
"name": "ExtDN",
"homepage": "https://extdn.org/",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.0.0",
"squizlabs/php_codesniffer": "^3.1.0",
"magento/marketplace-eqp": "dev-master"
},
"autoload": {
"psr-4": {
"Extdn\\": "Extdn/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"phpro/grumphp": "^0.14.0",
"friendsofphp/php-cs-fixer": "^2.11",
"infection/infection": "^0.8.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.9.2"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../..",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../..",
"test": "vendor/bin/phpunit"
},
"repositories": {
"meqp": {
"type": "git",
"url": "https://github.com/magento/marketplace-eqp.git"
}
}
}