-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.65 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
{
"name": "sci3ma/symfony-grumphp",
"description": "Configured GrumPHP with bunch of tools for static code analysis Symfony Framework",
"keywords": ["php", "symfony", "grumphp", "phpcs", "phpmd", "phpstan", "phpunit", "code quality", "standards"],
"license": "MIT",
"authors": [
{
"name": "Marcin Harasim",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^7.3|^8.0",
"composer/composer": "^2.0",
"enlightn/security-checker": "^1.5",
"friendsofphp/php-cs-fixer": "^2.18",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpmd/phpmd": "^2.9",
"phpro/grumphp": "^1.3",
"phpstan/phpstan": "^0.11.2|^0.12.26",
"phpstan/phpstan-doctrine": "^0.11.1|^0.12.0",
"phpstan/phpstan-phpunit": "^0.11.0|^0.12.0",
"phpstan/phpstan-symfony": "^0.11.1|^0.12.0",
"psr/event-dispatcher": "^1.0",
"sebastian/phpcpd": "^6.0",
"symfony/console": "^4.0|^5.0",
"symfony/filesystem": "^4.0|^5.0",
"symfony/phpunit-bridge": "^4.0|^5.0",
"thecodingmachine/phpstan-strict-rules": "^0.11.2|^0.12.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"MH\\SymfonyGrumPHP\\": "src/",
"MH\\SymfonyGrumPHP\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/sci3ma/symfony-grumphp/issues"
},
"homepage": "https://github.com/sci3ma/symfony-grumphp",
"config": {
"sort-packages": true
},
"bin": ["bin/symfony-grumphp"]
}