-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (49 loc) · 1.39 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
48
49
50
{
"name": "nhagemann/cmdl-parser-php",
"description": "Library to parse AnyContent CMDL files into an object representation",
"type": "library",
"homepage": "http://www.nilshagemann.de",
"license": "MIT",
"authors": [
{
"name": "Nils Hagemann",
"email": "mail@nilshagemann.de",
"homepage": "http://www.nilshagemann.de"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"phpmd/phpmd": "^2.13",
"slevomat/coding-standard": "^8.7"
},
"scripts": {
"phpunit" : "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpstan4": "vendor/bin/phpstan analyze --level 4 src tests",
"phpstan5": "vendor/bin/phpstan analyze --level 5 src tests",
"phpstan": "vendor/bin/phpstan analyze --level max src tests",
"phpmd": "vendor/bin/phpmd src ansi phpmd.xml"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}