-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 939 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
36
37
38
39
40
41
{
"name": "dcs/security-core-bundle",
"type": "symfony-bundle",
"description": "The DCSSecurityCoreBundle provides the basic services for the management of security",
"keywords": ["Security"],
"license": "MIT",
"authors": [
{
"name": "Damiano Ciarla",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.9"
},
"require-dev": {
"phpunit/phpunit": "^5",
"dcs/user-core-bundle": "~1.0@dev",
"symfony/security": "~2.8|~3.0",
"satooshi/php-coveralls": "~1.0",
"phpunit/phpcov": "3.*"
},
"suggest": {
"dcs/security-auth-form-bundle": "Provides an authentication system using the login form"
},
"autoload": {
"psr-4": {
"DCS\\Security\\CoreBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DCS\\Security\\CoreBundle\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}