This repository was archived by the owner on Nov 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.34 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "njasm/container",
"description": "Dependency Container for PHP",
"homepage": "http://github.com/njasm/container",
"license": "MIT",
"keywords": ["DiC", "IoC", "Dependency Injection", "Dependency-Container"],
"authors": [
{
"name": "Nelson João Morais",
"email": "njmorais@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/njasm/container/issues",
"source": "https://github.com/njasm/container"
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "4.4.*@dev",
"php-coveralls/php-coveralls": "1.1.0",
"mnapoli/php-di": "~4.0",
"aura/di": "~1.0",
"pimple/pimple": "~3.0",
"zendframework/zend-di": "~2.0",
"symfony/dependency-injection": "~2.5",
"illuminate/container": "~4.2",
"nette/di": "~2.2",
"ray/di": "~1.4",
"orno/di": "~2.0",
"joomla/di": "~1.2"
},
"require": {
"php": ">=5.3",
"container-interop/container-interop": "~1.0"
},
"autoload": {
"psr-4": {
"Njasm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Njasm\\Container\\Tests\\": "tests/",
"Njasm\\Container\\Examples\\": "example/"
}
}
}