forked from sitepoint-editors/Container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 816 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
{
"name": "sitepoint/container",
"description": "A simple, easy to follow PHP dependency injection container",
"type": "library",
"keywords": ["container", "dependency", "injection"],
"homepage": "https://github.com/sitepoint/Container",
"license": "MIT",
"authors": [
{
"name": "Andrew Carter",
"homepage": "http://andrewcarteruk.github.io/",
"role": "Developer"
}
],
"require": {
"container-interop/container-interop": "^1.1"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"SitePoint\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SitePoint\\Container\\Test\\": "test/"
}
}
}