This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 2.82 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
{
"type": "project",
"name": "openconext/stepup-readid",
"license": "Apache-2.0",
"require": {
"php": "^7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"ramsey/uuid": "^4.0",
"sensio/framework-extra-bundle": "^5.1",
"surfnet/stepup-gssp-bundle": "^3.0",
"surfnet/stepup-saml-bundle": "^4.1",
"symfony/asset": "4.4.*",
"symfony/console": "4.4.*",
"symfony/dependency-injection": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "4.4.*",
"symfony/http-client": "4.4.*",
"symfony/intl": "4.4.*",
"symfony/messenger": "4.4.*",
"symfony/monolog-bundle": "^3.1",
"symfony/security-bundle": "4.4.*",
"symfony/serializer-pack": "*",
"symfony/translation": "4.4.*",
"symfony/twig-pack": "*",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "4.4.*"
},
"require-dev": {
"ext-json": "*",
"ibuildings/qa-pack": "^1.8",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"StepupReadId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StepupReadId\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"check": [
"@phplint",
"@phpcs",
"@phpmd",
"@phpstan",
"@deptrac",
"@test",
"@security"
],
"security": "./support/qa/security",
"phplint": "./support/qa/phplint",
"phpcs": "./support/qa/phpcs",
"phpcbf": "./support/qa/phpcbf",
"phpmd": "./support/qa/phpmd",
"phpstan": "./support/qa/phpstan",
"deptrac": "./support/qa/deptrac",
"test": "./support/qa/phpunit"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.4.*",
"id": "01E1E5243E8KCCCXW2APD59PQR"
}
}
}