-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 995 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 995 Bytes
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
{
"name": "flotzilla/container",
"description": "PHP FIG PSR-11 container implementation",
"keywords": ["container", "dependency", "injection", "di", "service", "provider"],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.1",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpstan/phpstan": "^0.12.11"
},
"authors": [
{
"name": "flotzilla",
"email": "null.0.byte@gmail.com",
"role": "Developer",
"homepage": "http://lazy-tech.net"
}
],
"autoload": {
"psr-4": {
"flotzilla\\Container\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"flotzilla\\Container\\Test\\": "tests"
}
},
"scripts": {
"test": [
"phpunit"
],
"stan": [
"vendor/bin/phpstan analyse -l 4 -c phpstan.neon.dist src"
]
}
}