-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1002 Bytes
/
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
{
"name": "ellipse/container",
"type": "library",
"description": "Minimal Psr-11 container implementation handling service provider interop",
"keywords": [
"psr-11",
"container",
"service-provider"
],
"license": "MIT",
"homepage": "https://github.com/ellipsephp/container",
"support": {
"issues": "https://github.com/ellipsephp/container/issues",
"source": "https://github.com/ellipsephp/container"
},
"authors": [
{
"name": "pmall",
"email": "pierre.mallinjoud@gmail.com"
}
],
"provide": {
"psr/container-implementation": "^1.0"
},
"require": {
"php": ">=7.0",
"container-interop/service-provider": "^0.4.0",
"ellipse/type-errors": "^1.0"
},
"require-dev": {
"kahlan/kahlan": "^4.0",
"eloquent/phony-kahlan": "^1.0"
},
"autoload": {
"psr-4": {
"Ellipse\\": "src"
}
}
}