-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.83 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
{
"name": "surfnet/stepup-gssp-bundle",
"license": "Apache-2.0",
"description": "A Symfony 6 bundle to aid the creation of GSSP (Generic SAML Step-up Provider) device support.",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Surfnet\\GsspBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Surfnet\\GsspBundle\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-openssl": "*",
"beberlei/assert": "^3",
"symfony/monolog-bundle": "^3.8",
"surfnet/stepup-saml-bundle": "^6.0",
"symfony/dependency-injection": "^6.4",
"symfony/framework-bundle": "^6.4"
},
"require-dev": {
"behat/behat": "^3.13",
"jakub-onderka/php-parallel-lint": "^1",
"malukenho/docheader": "^0",
"mockery/mockery": "^1.5",
"overtrue/phplint": "*",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.6",
"sebastian/phpcpd": "^6.0",
"slevomat/coding-standard": "^8.13",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/phpunit-bridge": "^6.4"
},
"scripts": {
"check": [
"@composer-validate",
"@docheader",
"@phplint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@phpstan",
"@test",
"@behat"
],
"behat": "./ci/qa/behat",
"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",
"docheader": "./ci/qa/docheader"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}