-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.69 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.69 KB
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
48
49
50
51
52
53
54
{
"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": "^8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"escapestudios/symfony2-coding-standard": "^3.17",
"slevomat/coding-standard": "^8.23",
"squizlabs/php_codesniffer": "^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45",
"nikic/php-parser": "< 5.0.1",
"phan/phan": "^6.0.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "> 9.6.15 < 9.6.33",
"psalm/plugin-phpunit": "^0.19",
"sabre/event": ">= 5.1.6",
"symfony/filesystem": ">= 5.4.45",
"vimeo/psalm": ">= 6.0.0 < 6.15.0"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"audit": {
"block-insecure": false
}
}
}