-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
177 lines (177 loc) · 4.57 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "surfnet/stepup-azure-mfa",
"license": "Apache-2.0",
"description": "GSSP for Microsoft Azure Multi-factor authentication",
"type": "project",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Surfnet\\": "src\\Surfnet"
}
},
"autoload-dev": {
"psr-4": {
"Dev\\": "dev",
"Surfnet\\AzureMfa\\Test\\Features\\": "tests\\Functional\\Features",
"Surfnet\\AzureMfa\\Test\\Unit\\": "tests\\Unit",
"Surfnet\\AzureMfa\\Test\\WebTest\\": "tests\\Functional\\WebTests"
}
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"incenteev/composer-parameter-handler": "^2.1",
"openconext/monitor-bundle": "^4.3",
"surfnet/stepup-bundle": "^6.0",
"surfnet/stepup-gssp-bundle": "^5.0",
"surfnet/stepup-saml-bundle": "^6.0",
"symfony/asset": "^6.4",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/expression-language": "6.4.*",
"symfony/flex": "^2.4",
"symfony/form": "^6.4",
"symfony/monolog-bundle": "^3.8",
"symfony/runtime": "6.*.*",
"symfony/security-bundle": "^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",
"twig/extra-bundle": "^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"behat/mink": "^1.9",
"behat/mink-browserkit-driver": "^2.1",
"behat/mink-selenium2-driver": "^1.6",
"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",
"phpunit/phpunit": "^9.6",
"sebastian/phpcpd": "^6.0",
"slevomat/coding-standard": "^8.13",
"soyuka/contexts": "^3.3",
"squizlabs/php_codesniffer": "^3.7",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/phpunit-bridge": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"scripts": {
"check": [
"@composer-validate",
"@docheader",
"@lint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@phpstan",
"@unit-tests"
],
"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",
"test": "./ci/qa/phpunit",
"unit-tests": "./ci/qa/phpunit --testsuite=UnitTests",
"web-tests": "./ci/qa/phpunit --testsuite=WebTests",
"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",
"!/.env.local.php",
"!/var/cache/prod",
"!/public/build",
"/.github",
"/.gitignore",
"/symfony.lock",
"/node_modules",
"/dev",
"/bin/phpunit",
"/translations/sp",
"/coverage",
"/docs",
"tests",
"/build",
"/tsconfig.json",
"/tslint.json",
"/webpack.config.js",
"/jest.config.js",
"/.docheader",
"/.env.ci",
"/.env.test",
"/.env.vm",
"/*.xml",
"/*.xml.dist",
"/config/routes/dev",
"/config/packages/dev",
"/config/packages/test",
"/node_modules",
"/coverage",
"/build",
"/ci",
"/docker",
"/var/log",
"/var/sessions"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true,
"endroid/installer": false
}
},
"extra": {
"runtime": {
"disable_dotenv": true
},
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
},
"incenteev-parameters": [
{
"file": "config/openconext/parameters.yaml"
},
{
"file": "config/openconext/institutions.yaml"
}
]
}
}