-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
138 lines (138 loc) · 3.44 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "surfnet/stepup-gssp-example",
"license": "Apache-2.0",
"description": "Example Generic SAML Stepup Provider.",
"type": "project",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Surfnet\\": "src\\Surfnet"
}
},
"autoload-dev": {
"psr-4": {
"Dev\\": "dev",
"Surfnet\\Gssp\\Test\\Features\\": "tests\\Functional\\Features",
"Surfnet\\Gssp\\Test\\Unit\\": "tests\\Unit",
"Surfnet\\Gssp\\Test\\WebTest\\": "tests\\Functional\\WebTests"
}
},
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zlib": "*",
"incenteev/composer-parameter-handler": "^2.1",
"surfnet/stepup-gssp-bundle": "^5.0",
"symfony/asset": "^6.4",
"symfony/console": "^6.4",
"symfony/flex": "^2.3",
"symfony/form": "^6.4",
"symfony/monolog-bundle": "^3.8",
"symfony/runtime": "6.4.*",
"symfony/templating": "^6.4",
"symfony/translation": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/validator": "^6.4",
"symfony/webpack-encore-bundle": "^2.1",
"symfony/yaml": "^6.4"
},
"require-dev": {
"behat/mink": "^1.9",
"behat/mink-browserkit-driver": "^2.1",
"friends-of-behat/symfony-extension": "^2.4",
"malukenho/docheader": "^1",
"mockery/mockery": "^1.6",
"overtrue/phplint": "*",
"phpmd/phpmd": "^2.14",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"sebastian/phpcpd": "^6.0",
"slevomat/coding-standard": "^8.13",
"soyuka/contexts": "^3.3",
"squizlabs/php_codesniffer": "~3",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/http-client": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"scripts": {
"check": [
"@composer-validate",
"@docheader",
"@lint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@phpstan"
],
"behat": "./ci/qa/behat",
"composer-validate": "./ci/qa/validate",
"docheader": "./ci/qa/docheader",
"lint": "./ci/qa/lint",
"phpcs": "./ci/qa/phpcs",
"phpcpd": "./ci/qa/phpcpd",
"phpcbf": "./ci/qa/phpcbf",
"phpmd": "./ci/qa/phpmd",
"phpstan": "./ci/qa/phpstan",
"phpstan-baseline": "./ci/qa/phpstan-update-baseline",
"frontend-install": [
"yarn install",
"yarn encore prod"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@auto-scripts"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@auto-scripts"
]
},
"archive": {
"exclude": [
"*",
".*",
"!/.env",
"*/Tests/*",
"!/bin",
"!/component_info",
"!/config",
"!/migrations",
"!/public",
"!/src",
"!/templates",
"!/translations",
"!/var/cache/prod",
"!/vendor"
]
},
"extra": {
"runtime": {
"disable_dotenv": true
},
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
},
"incenteev-parameters": [
{
"file": "config/openconext/parameters.yaml"
}
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
}
}
}