-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
67 lines (67 loc) · 2.14 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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-or-later",
"type": "simplesamlphp-module",
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\casserver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Casserver\\": "tests/src"
}
},
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-libxml": "*",
"ext-SimpleXML": "*",
"simplesamlphp/assert": "^1.1",
"simplesamlphp/composer-module-installer": "^1.3",
"simplesamlphp/simplesamlphp": "^2.2",
"simplesamlphp/xml-cas": "^v1.3",
"simplesamlphp/xml-common": "^v1.17",
"simplesamlphp/xml-soap": "^v1.5"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.7",
"phpunit/phpunit": "^10",
"psalm/plugin-phpunit": "^0.19.0",
"squizlabs/php_codesniffer": "^3.7"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-casserver/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-casserver"
},
"suggest": {
"ext-pdo": "*"
},
"scripts": {
"validate": [
"vendor/bin/phpunit --no-coverage --testdox",
"vendor/bin/phpcs -p"
],
"tests": [
"vendor/bin/phpunit --no-coverage"
]
}
}