-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 912 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 912 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
{
"name": "bitbag/coding-standard",
"keywords": ["bitbag", "coding-standard"],
"description": "BitBag coding standard",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"symplify/easy-coding-standard": "^8.3 || ^9.4 || ^10.0 || ^11.0",
"friendsofphp/php-cs-fixer": "^3.0",
"slevomat/coding-standard": "^7.0",
"friendsoftwig/twigcs": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"BitBag\\CodingStandard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitBag\\CodingStandard\\Tests": "tests/"
}
}
}