-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 954 Bytes
/
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
{
"name": "b4rb4ross4/symfony-user-bundle",
"description": "A bundle providing functionality for user handling of an symfony application",
"type": "symfony-bundle",
"require": {
"php": "^7.1",
"symfony/symfony": "^3.0",
"doctrine/orm" : "^2.5",
"doctrine/doctrine-bundle": "^1.6"
},
"require-dev": {
"codeception/codeception": "^2.2",
"symfony/framework-bundle": "^3.0",
"symfony/security-bundle": "^3.0",
"doctrine/doctrine-fixtures-bundle": "^2.3"
},
"license": "MIT",
"authors": [
{
"name": "Sven Lütje",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "B4rb4ross4\\UserBundle\\": "" },
"exclude-from-classmap": [
"Test/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}