-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1.2 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
{
"name": "alexandret/phpcas-guard-bundle",
"type": "symfony-bundle",
"description": "PhpCAS Bundle using guard for Symfony3.4 and above",
"homepage": "https://github.com/Alexandre-T/casguard",
"license": "MIT",
"authors": [
{
"name": "Alexandre Tranchant",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Alexandre-T/casguard/issues",
"source": "https://github.com/Alexandre-T/casguard"
},
"require": {
"php": "^7.1.3",
"jasig/phpcas": "~1.3",
"symfony/security-guard": "~3.4|4.*|~5.0",
"symfony/config": "~3.4|4.*|~5.0",
"symfony/dependency-injection": "~3.4|4.*|~5.0",
"symfony/routing": "~3.4|4.*|~5.0",
"symfony/yaml": "~3.4|4.*|~5.0"
},
"autoload": {
"psr-4": { "AlexandreT\\Bundle\\CasGuardBundle\\": "" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"codeception/aspect-mock": "*",
"phpunit/phpunit": "~7.5",
"symfony/debug": "~3.4|4.*|~5.0",
"symfony/phpunit-bridge": "~3.4|4.*|~5.0"
}
}