-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
47 lines (47 loc) · 1.49 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
{
"name": "mayflower/mo4-coding-standard",
"description": "PHP CodeSniffer ruleset implementing the MO4 coding standards extending the Symfony coding standards.",
"license": "MIT",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"static analysis",
"Symfony",
"mo4",
"standards",
"PSR"
],
"authors": [
{
"name": "Xaver Loppenstedt",
"email": "xaver@loppenstedt.de"
}
],
"homepage": "https://github.com/mayflower/mo4-coding-standard",
"support": {
"issues": "https://github.com/mayflower/mo4-coding-standard/issues",
"source": "https://github.com/mayflower/mo4-coding-standard"
},
"require": {
"php": "~7.2 || ~8.0",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7 || ~1.0",
"escapestudios/symfony2-coding-standard": "^3.10.0",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.8.0"
},
"require-dev": {
"ergebnis/composer-normalize": ">=2.19 <2.30",
"phan/phan": "^5.4.2",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^7.5.20 || ^8.5.36 || ^9.6.15",
"psalm/plugin-phpunit": "^0.18",
"vimeo/psalm": "^4.30"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}