-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
44 lines (44 loc) · 1.33 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
{
"name": "besimple/sso-auth-bundle",
"type": "symfony-bundle",
"description": "SSO authentication your Symfony2 project ",
"keywords": ["CAS", "SSO", "Symfony2", "authentication"],
"homepage": "https://github.com/BeSimple/BeSimpleSsoAuthBundle",
"license": "MIT",
"authors": [
{
"name": "Jean-François Simon",
"email": "[email protected]"
},
{
"name": "BeSimple Community",
"homepage": "https://github.com/BeSimple/BeSimpleSsoAuthBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"kriswallsmith/buzz": ">=0.7,<=0.16.1",
"symfony/framework-bundle": "~2.1|~3.0",
"symfony/twig-bundle": "~2.1|~3.0",
"symfony/security-bundle": "~2.1|~3.0"
},
"require-dev": {
"symfony/browser-kit": "~2.1",
"symfony/css-selector": "~2.1",
"symfony/filesystem": "~2.1",
"symfony/form": "~2.1",
"symfony/validator": "~2.1",
"symfony/web-profiler-bundle": "~2.1",
"symfony/yaml": "~2.1",
"symfony/expression-language": "~2.4"
},
"autoload": {
"psr-0": { "BeSimple\\SsoAuthBundle": "" }
},
"target-dir": "BeSimple/SsoAuthBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}