-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
77 lines (76 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
{
"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-dom": "*",
"ext-filter": "*",
"ext-libxml": "*",
"ext-SimpleXML": "*",
"ext-session": "*",
"simplesamlphp/assert": "^1.1",
"simplesamlphp/composer-module-installer": "^1.3",
"simplesamlphp/simplesamlphp": "^2.3",
"simplesamlphp/xml-cas": "^1.3",
"simplesamlphp/xml-common": "^1.17",
"simplesamlphp/xml-soap": "^1.5",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.4",
"simplesamlphp/saml11": "~1.2.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.7",
"phpunit/phpunit": "^10",
"psalm/plugin-phpunit": "^0.19.0",
"squizlabs/php_codesniffer": "^3.7",
"maglnet/composer-require-checker": "4.7.1",
"vimeo/psalm": "^5",
"icanhazstring/composer-unused": "^0.8.11"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-casserver/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-casserver"
},
"scripts": {
"validate": [
"vendor/bin/phpcs -p",
"vendor/bin/composer-require-checker check --config-file=tools/composer-require-checker.json composer.json",
"vendor/bin/psalm -c psalm-dev.xml",
"vendor/bin/composer-unused",
"vendor/bin/phpunit --no-coverage --testdox"
],
"tests": [
"vendor/bin/phpunit --no-coverage"
],
"propose-fix": [
"vendor/bin/phpcs --report=diff"
]
}
}