-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (30 loc) · 875 Bytes
/
composer.json
File metadata and controls
32 lines (30 loc) · 875 Bytes
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
{
"name": "yraiso/casauth-bundle",
"type": "symfony-bundle",
"description": "Basic CAS (SSO) authenticator for Symfony 5.4, 6.0, 7.0 and 8.0",
"keywords": ["YRaiso", "CAS", "SSO", "Symfony 5.4", "Symfony 6.0", "Symfony 7.0", "Symfony 8.0", "Authenticator"],
"license": "MIT",
"authors": [
{
"name": "Yoann Raison",
"email": "yoann.raison@uca.fr"
}
],
"require": {
"php": ">=7.2.5",
"symfony/config": "^5.4|^6.0|^7.0|^8.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
"symfony/http-foundation": "^5.4|^6.0|^7.0|^8.0",
"symfony/http-client": "^5.4|^6.0|^7.0|^8.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
"symfony/security-bundle": "^5.4|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-0": {
"YRaiso\\CasAuthBundle": ""
}
},
"target-dir": "YRaiso/CasAuthBundle",
"extra": {
}
}