-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 859 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 859 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
42
{
"name": "simply/container",
"type": "library",
"description": "PSR-11 compatible dependency injection container with delegation support",
"keywords": [
"psr-11",
"container",
"container-interop",
"dependency",
"injection"
],
"license": "MIT",
"authors": [
{
"name": "Riikka Kalliomäki",
"email": "riikka.kalliomaki@gmail.com",
"homepage": "http://riimu.net"
}
],
"require": {
"php": "^7.2",
"psr/container": "^1.0"
},
"provide": {
"psr/container-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"riimu/php-cs-fixer-config": "^0.1.1",
"riimu/sami-config": "^0.1.0"
},
"autoload": {
"psr-4": {
"Simply\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Simply\\Container\\": "tests/tests/"
}
}
}