-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (58 loc) · 1.78 KB
/
composer.json
File metadata and controls
59 lines (58 loc) · 1.78 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
{
"name": "simplesamlphp/xml-ws-security-policy",
"description": "Web Services Security Policy library from SimpleSAMLphp",
"type": "simplesamlphp-xmlprovider",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"simplesamlphp/assert": "~2.0",
"simplesamlphp/xml-common": "~2.8",
"simplesamlphp/xml-ws-addressing": "~1.3",
"simplesamlphp/xml-ws-policy": "~1.3",
"simplesamlphp/xml-wss-core": "~1.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.11"
},
"autoload": {
"psr-4": {
"SimpleSAML\\WebServices\\SecurityPolicy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\WebServices\\SecurityPolicy\\": "tests/SecurityPolicy/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true,
"simplesamlphp/composer-module-installer": true
}
},
"scripts": {
"pre-commit": [
"vendor/bin/phpcs -p",
"vendor/bin/composer-require-checker check 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"
]
}
}