-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (79 loc) · 2.72 KB
/
composer.json
File metadata and controls
80 lines (79 loc) · 2.72 KB
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
78
79
80
{
"name": "simplesamlphp/simplesamlphp-module-cas",
"description": "A module that provides CAS authentication",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "cas"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Olav Morken",
"email": "olavmrk@gmail.com"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-module-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\cas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"require": {
"php": "^8.2",
"ext-pcre": "*",
"ext-dom": "*",
"simplesamlphp/assert": "^1.9",
"simplesamlphp/composer-module-installer": "^1.4",
"simplesamlphp/simplesamlphp": "dev-simplesamlphp-2.5 as v2.5.x-dev",
"simplesamlphp/simplesamlphp-module-ldap": "~1.2",
"simplesamlphp/xml-cas-module-slate": "~1.1.0",
"simplesamlphp/xml-cas": "^v2.2.0",
"simplesamlphp/xml-common": "~2.4",
"symfony/http-foundation": "~7.4",
"symfony/http-client": "~7.4",
"symfony/http-client-contracts": "^3.5"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.10",
"phpunit/phpunit": "^11",
"icanhazstring/composer-unused": "^0.9.5",
"squizlabs/php_codesniffer": "^4.0.0",
"phpstan/phpstan": "^2.1.33",
"maglnet/composer-require-checker": "^4"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-cas/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-cas"
},
"scripts": {
"pre-commit": [
"vendor/bin/phpcs -p",
"vendor/bin/composer-require-checker check --config-file=tools/composer-require-checker.json composer.json",
"vendor/bin/phpstan analyze -c phpstan.neon",
"vendor/bin/phpstan analyze -c phpstan-dev.neon",
"vendor/bin/composer-unused",
"vendor/bin/phpunit --no-coverage --testdox"
],
"tests": [
"vendor/bin/phpunit --no-coverage"
],
"propose-fix": [
"vendor/bin/phpcs --report=diff"
]
}
}