-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·32 lines (32 loc) · 926 Bytes
/
composer.json
File metadata and controls
executable file
·32 lines (32 loc) · 926 Bytes
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
{
"name": "solutiondrive/coding-standard",
"description": "solutionDrive coding standard.",
"license": "MIT",
"authors": [
{
"name": "solutionDrive",
"email": "entwickler@solutiondrive.de"
}
],
"require": {
"php": "^7.4||^8.0",
"symplify/easy-coding-standard": "^11.0",
"slevomat/coding-standard": "^8.0",
"cweagans/composer-patches": "^1.7"
},
"config": {
"preferred-install": "source",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"symplify/easy-coding-standard": {
"Adjust autoloader for PHAR support": "patches/adjust-autoloader-for-phar-support.patch"
}
}
}
}