-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.06 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "metadrop/grumphp-php-compatibility",
"type": "library",
"authors": [
{
"name": "Hannes Kirsman",
"email": "hkirsman@gmail.com"
},
{
"name": "Metadrop",
"email": "hola@metadrop.net"
}
],
"autoload": {
"psr-4": {
"Metadrop\\PhpCompatibilityTask\\": "src"
}
},
"require": {
"php": ">=7.0",
"phpro/grumphp": "*",
"phpcompatibility/php-compatibility": "10.0.0-alpha1 || 10.0.0-alpha2",
"squizlabs/php_codesniffer": "^3.4"
},
"require-dev":{
"metadrop/composer-comments": "^1.0"
},
"extra": {
"package-comments": {
"phpcompatibility/php-compatibility": "Develop version is required because latest versions are from 2019 and are not up to date."
}
},
"config": {
"allow-plugins": {
"metadrop/composer-comments": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}