-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (81 loc) · 2.36 KB
/
composer.json
File metadata and controls
83 lines (81 loc) · 2.36 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
81
82
83
{
"name": "simplesamlphp/saml2",
"description": "SAML2 PHP library from SimpleSAMLphp",
"type": "simplesamlphp-xmlprovider",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Andreas Åkre Solberg",
"email": "andreas.solberg@uninett.no"
},
{
"name": "Jaime Pérez Crespo",
"email": "jaime.perez@uninett.no"
},
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"require": {
"php": "^8.3",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-zlib": "*",
"nyholm/psr7": "~1.8",
"psr/clock": "~1.0",
"psr/http-message": "~2.0",
"psr/log": "~3.0",
"simplesamlphp/assert": "~2.0",
"simplesamlphp/xml-common": "~2.7",
"simplesamlphp/xml-security": "~2.3",
"simplesamlphp/xml-soap": "~2.3"
},
"require-dev": {
"ext-intl": "*",
"beste/clock": "~3.0",
"mockery/mockery": "~1.6",
"simplesamlphp/simplesamlphp-test-framework": "~1.11"
},
"suggest": {
"ext-soap": "*"
},
"autoload": {
"psr-4": {
"SimpleSAML\\SAML2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\SAML2\\": "tests/SAML2/",
"SimpleSAML\\TestUtils\\SAML2\\": "tests/TestUtils/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v6.1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"simplesamlphp/composer-module-installer": false,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
},
"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"
]
}
}