-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (25 loc) · 831 Bytes
/
composer.json
File metadata and controls
26 lines (25 loc) · 831 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
{
"name": "loso/di-annotations-bundle",
"type": "symfony-bundle",
"description": "A bundle that enables Dependency Injection by annotations into your Symfony2 projects.",
"keywords": ["annotations","dependencyinjection", "dependency injection"],
"homepage": "http://github.com/loicfrering/LosoDiAnnotationsBundle",
"version": "0.0.6",
"license": "MIT",
"authors": [
{
"name": "Loïc Frering",
"email": "loic.frering@gmail.com",
"homepage": "http://github.com/loicfrering"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "2.*",
"doctrine/orm": ">=2.1"
},
"autoload": {
"psr-0": { "Loso\\Bundle\\DiAnnotationsBundle": "" }
},
"target-dir": "Loso/Bundle/DiAnnotationsBundle"
}