-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
73 lines (73 loc) · 2.11 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
{
"name": "surfnet/stepup-saml-bundle",
"type": "symfony-bundle",
"description": "A Symfony 6 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": "*",
"robrichards/xmlseclibs": "^3.1.1",
"simplesamlphp/saml2": "^4.6",
"symfony/dependency-injection": "^6.3",
"symfony/framework-bundle": "^6.3",
"symfony/security-bundle": "^6.3",
"symfony/templating": "^6.3",
"twig/twig": "^3"
},
"require-dev": {
"ext-zlib": "*",
"mbhsoft/phpunit-xsdvalidation": "^3.0",
"mockery/mockery": "^1.5",
"overtrue/phplint": "*",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"psr/log": "~1.0",
"sebastian/exporter": "^4.0.5",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/phpunit-bridge": "^6.3",
"phpstan/extension-installer": "^1.3"
},
"scripts": {
"check": [
"@composer-validate",
"@phplint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@phpstan",
"@test"
],
"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",
"phpcbf": "./ci/qa/phpcbf"
},
"autoload": {
"psr-4": {
"Surfnet\\SamlBundle\\": "src"
}
},
"extra": {
"phpstan": {
"includes": [
"./ci/qa/extension.neon"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}