This repository has been archived by the owner on Dec 27, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.5 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bit3/service-aware-bundle",
"description": "Automated service injection for symfony.",
"keywords": [
"service"
],
"homepage": "http://bit3.de",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tristan Lins",
"email": "[email protected]",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bit3/service-aware-bundle/issues",
"wiki": "https://github.com/bit3/service-aware-bundle/wiki",
"source": "https://github.com/bit3/service-aware-bundle"
},
"require": {
"php": ">=5.3",
"symfony/dependency-injection": "~2.8|~3.0",
"symfony/finder": "~2.8|~3.0",
"symfony/http-kernel": "~2.8|~3.0",
"symfony/property-access": "~2.8|~3.0",
"symfony/yaml": "~2.8|~3.0"
},
"require-dev": {
"contao-community-alliance/build-system-all-tasks": "~1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"braincrafted/bootstrap-bundle": "Support the flash message service.",
"doctrine/mongodb-odm": "Supports the document manager service."
},
"autoload": {
"psr-4": {
"Bit3\\Symfony\\ServiceAwareBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}