This repository was archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.33 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"name": "mez/grumphp-tasks",
"type": "library",
"description": "Tasks for GrumPHP",
"license": "MIT",
"authors": [
{
"name": "Martin Meredith",
"email": "martin@sourceguru.net"
}
],
"require": {
"php": "^7.3",
"phpro/grumphp": "^0.16.1 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^1.0.0",
"symfony/options-resolver": "^4.3 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"jakub-onderka/php-parallel-lint": "^1.0",
"localheinz/composer-normalize": "^1.3 || ^2.0",
"maglnet/composer-require-checker": "^2.0",
"nikic/php-parser": "^4.2",
"phpmd/phpmd": "^2.7",
"phpstan/phpstan": "^0.11.16 || ^0.12.0",
"povils/phpmnd": "^2.1",
"sebastian/phpcpd": "^4.1 || ^5.0",
"sensiolabs/security-checker": "^6.0"
},
"config": {
"platform": {
"php": "7.3"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mez\\GrumPHP\\": [
"src"
]
}
},
"scripts": {
"cs-check": "php-cs-fixer --allow-risky=yes --config=.php_cs --dry-run --verbose fix",
"cs-fix": "php-cs-fixer --allow-risky=yes --config=.php_cs --verbose fix"
}
}