-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.68 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.68 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
84
85
86
87
88
89
90
{
"name": "surfnet/stepup-saml-bundle",
"type": "symfony-bundle",
"description": "A Symfony 7 bundle that integrates the simplesamlphp\\saml2 library with Symfony.",
"keywords": ["surfnet", "StepUp", "simplesamlphp", "SAML", "SAML2"],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-openssl": "*",
"psr/log": "^3.0",
"robrichards/xmlseclibs": "^3.1.4",
"simplesamlphp/saml2": "^4.6",
"symfony/dependency-injection": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0",
"symfony/security-bundle": "^6.3|^7.0",
"symfony/templating": "^6.3|^7.0",
"twig/twig": "^3"
},
"conflict": {
"symfony/http-foundation": ">=8.0"
},
"require-dev": {
"ext-libxml": "*",
"ext-zlib": "*",
"irstea/phpcpd-shim": "^6.0",
"malukenho/docheader": "^1.1",
"mockery/mockery": "^1.5",
"overtrue/phplint": "*",
"phpmd/phpmd": "^2.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0.0",
"rector/rector": "^2.2",
"sebastian/exporter": "^6.3",
"slevomat/coding-standard": "^8.24",
"squizlabs/php_codesniffer": "^4.0",
"symfony/phpunit-bridge": "^7.3.4"
},
"scripts": {
"check": [
"@check-ci",
"@rector"
],
"check-ci": [
"@composer-validate",
"@license-headers",
"@phplint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@test",
"@phpstan",
"@composer audit"
],
"composer-validate": "./ci/qa/validate",
"phplint": "./ci/qa/phplint",
"phpcs": "./ci/qa/phpcs",
"phpcpd": "./ci/qa/phpcpd",
"phpmd": "./ci/qa/phpmd",
"phpstan": "./ci/qa/phpstan",
"phpstan-baseline": "./ci/qa/phpstan-update-baseline",
"test": "./ci/qa/phpunit",
"license-headers": "./ci/qa/docheader",
"phpcbf": "./ci/qa/phpcbf",
"rector": "./ci/qa/rector.sh --dry-run",
"rector-fix": "./ci/qa/rector.sh"
},
"autoload": {
"psr-4": {
"Surfnet\\SamlBundle\\": "src"
}
},
"extra": {
"phpstan": {
"includes": [
"./ci/qa/extension.neon"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}