-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "phact-cmf/container",
"description": "PSR-11 compatible dependency injection container",
"keywords": ["psr11", "container", "dependency", "injection", "di"],
"homepage": "https://github.com/phact-cmf/Container",
"license": "MIT",
"authors": [
{
"name": "Anton Okulov",
"email": "qantus@mail.ru",
"homepage": "https://github.com/AntonOkulov",
"role": "Developer"
},
{
"name": "Maxim Korobitsyn",
"email": "dog.mixer@gmain.com",
"homepage": "https://github.com/tsukasa-mixer",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"psr/container": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Phact\\Container\\": "",
"Tests\\": "Tests"
},
"exclude-from-classmap": [
"/Tests/"
]
}
}