-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 963 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 963 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
{
"name": "oxidprojects/dependency-injection",
"description": "The missing dependency injection for OXID eShop",
"license": "GPL-3.0-or-later",
"type": "add-on",
"require": {
"symfony/dependency-injection": "^3.1",
"symfony/expression-language": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^6",
"mikey179/vfsstream": "^1.6",
"symfony/config": "*",
"symfony/yaml": "*",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"oxidprojects\\DI\\": "src/"
},
"files": [
"function_project_container.php"
]
},
"autoload-dev": {
"psr-4": {
"OxidEsales\\Eshop\\Core\\": "tests/lib/",
"oxidprojects\\DI\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Tobias Matthaiou",
"email": "developer@tobimat.eu"
}
]
}