-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
57 lines (57 loc) · 1.52 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
50
51
52
53
54
55
56
57
{
"name": "drupol/phpcsfixer-configs-drupal",
"description": "Base PHP CS Fixer configurations for Drupal 7 and 8.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
},
{
"type": "paypal",
"url": "https://www.paypal.me/drupol"
}
],
"require": {
"php": ">= 8.0.0",
"ext-mbstring": "*",
"ext-tokenizer": "*",
"drupol/phpcsfixer-configs-php": "^2.0",
"friendsofphp/php-cs-fixer": "^3.49"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31.0",
"maglnet/composer-require-checker": "^4.4.0",
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp": "^1.0 || ^2.0",
"phpunit/phpunit": "^9.6.13 || ^10"
},
"autoload": {
"psr-4": {
"drupol\\PhpCsFixerConfigsDrupal\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"drupol\\PhpCsFixerConfigsDrupal\\Tests\\": "./tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts": {
"grumphp": "./vendor/bin/grumphp run"
}
}