-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 919 Bytes
/
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
{
"name": "mglaman/composer-drupal-lenient",
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"ComposerDrupalLenient\\": "src/"
}
},
"authors": [
{
"name": "Matt Glaman",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"composer-plugin-api": "^2.0"
},
"extra": {
"class": "ComposerDrupalLenient\\Plugin"
},
"require-dev": {
"composer/composer": "^2.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.6",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}