-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.71 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
{
"name": "unknown/user-light",
"type": "library",
"description": "Light user handling bundle for Symfony2",
"keywords": [
"user", "light", "base"
],
"license": "MIT",
"authors": [
{
"name": "Unknown",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "~5.4",
"symfony/config": "~2.6",
"symfony/dependency-injection": "~2.6",
"symfony/http-foundation": "~2.6",
"symfony/security": "~2.6",
"symfony/templating": "~2.6",
"symfony/translation": "~2.6",
"symfony/twig-bridge": "~2.6",
"symfony/twig-bundle": "~2.6",
"sensio/framework-extra-bundle": "~3.0",
"doctrine/orm": "~2.4"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"Unknown\\": "src/Unknown",
"spec\\Unknown\\": "spec/Unknown"
}
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}