forked from simplesamlphp/simplesamlphp-module-casserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 1.34 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
{
"name": "simplesamlphp/simplesamlphp-module-casserver",
"description": "CAS 1.0 and 2.0 compliant CAS server module for simpleSAMLphp",
"keywords": [ "cas", "server", "cas 1.0","cas 2.0" ],
"homepage": "https://github.com/simplesamlphp/simplesamlphp-module-casserver",
"license": "LGPL-2.1",
"type": "simplesamlphp-module",
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\casserver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Casserver\\": "tests/src"
}
},
"require": {
"php": ">=7.4 || ^8.0",
"simplesamlphp/composer-module-installer": "^1.3.2",
"simplesamlphp/simplesamlphp": "^2.0.0-rc2",
"simplesamlphp/xml-common": "^1.3.1"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.2.1"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-casserver/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-casserver"
}
}