-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "fermio/trait-injection-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for trait injection.",
"keywords": ["fermio", "trait", "injection", "symfony", "bundle"],
"homepage": "https://github.com/fermio/FermioTraitInjectionBundle",
"license": "MIT",
"authors": [{
"name": "Pierre Minnieur",
"email": "pierre@ferm.io",
"homepage": "http://ferm.io/"
}],
"require": {
"php": "~5.4",
"symfony/framework-bundle": "~2.1"
},
"require-dev": {
"doctrine/common": "~2.2",
"symfony/form": "~2.1",
"symfony/security": "~2.1",
"swiftmailer/swiftmailer": "~4.2",
"symfony/validator": "~2.1"
},
"suggest": {
"fermio/traits": "~1.0@dev"
},
"autoload": {
"psr-0": {
"Fermio\\Bundle\\TraitInjectionBundle\\": ""
}
},
"target-dir": "Fermio/Bundle/TraitInjectionBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}