-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.19 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
{
"name": "eventjet/coding-standard",
"description": "Eventjet Coding Standard",
"license": "MIT",
"type": "phpcodesniffer-standard",
"authors": [
{
"name": "Rudolph Gottesheim",
"email": "[email protected]"
},
{
"name": "Thomas Rieschl",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5 || ^0.6 || ^0.7 || ^1.0",
"friendsofphp/php-cs-fixer": "^3.32",
"slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.6.1",
"webimpress/coding-standard": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"Eventjet\\CodingStandard\\": "Eventjet",
"Eventjet\\CodingStandard\\Strict\\": "EventjetStrict"
}
},
"autoload-dev": {
"psr-4": {
"Eventjet\\CodingStandard\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}