-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
59 lines (59 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
{
"name": "bitexpert/disco",
"description": "Dependency Injection Container",
"minimum-stability": "stable",
"license": "Apache-2.0",
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^8.0.0",
"psr/container": "^1.1.1",
"doctrine/annotations": "^1.12.1",
"ocramius/proxy-manager": "^2.11.1",
"bitexpert/slf4psrlog": "^0.1.3"
},
"require-dev": {
"bookdown/bookdown": "@dev",
"mikey179/vfsstream": "^1.6",
"monolog/monolog": "^2.2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.81",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpunit/phpunit": "^9.5.2",
"squizlabs/php_codesniffer": "^3.5.8"
},
"autoload": {
"psr-4": {
"bitExpert\\Disco\\": "src/bitExpert/Disco"
}
},
"autoload-dev": {
"psr-4": {
"bitExpert\\Disco\\": ["tests/bitExpert/Disco"]
}
},
"provide": {
"container-interop/container-interop-implementation": "^1.2",
"psr/container-implementation": "^1.0"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"cs-fix": "vendor/bin/phpcbf",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
}
}