forked from northwoods/container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.24 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
{
"name": "northwoods/container",
"description": "Container wrapper for Auryn dependency injector",
"license": "MIT",
"keywords": [
"auyrn",
"container",
"psr-11"
],
"provide": {
"psr/container-implementation": "^1.0"
},
"require": {
"php": ">=7.1",
"psr/container": "^1.0",
"container-interop/container-interop": "1.2.0",
"rdlowrey/auryn": "^1.1"
},
"require-dev": {
"eloquent/phony-phpunit": "^4.0",
"eloquent/phpstan-phony": "^0.2.0",
"phpstan/phpstan": "^0.10.1",
"phpunit/phpunit": "^7.0.3",
"squizlabs/php_codesniffer": "^3.2",
"zendframework/zend-container-config-test": "^0.2.0"
},
"autoload": {
"psr-4": {
"Northwoods\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Northwoods\\Container\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@sa-check"
],
"cs-check": "phpcs --standard=PSR2 src/ tests/",
"sa-check": "phpstan analyse -l max -c phpstan.neon src --no-progress",
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}