-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
110 lines (110 loc) · 3.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
103
104
105
106
107
108
109
110
{
"name": "r3h6/oidc-server",
"description": "OpenID Connect server for TYPO3.",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"authors": [],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"r3h6/oauth2-server": "^2.0",
"steverhoades/oauth2-openid-connect-server": "^3.0",
"typo3/cms-core": "^12.4 || ^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"michielroos/typo3scan": "^1.7",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpcov": "^9.0 || ^10.0",
"saschaegerer/phpstan-typo3": "^1.10",
"typo3/cms-belog": "^12.4 || ^13.4",
"typo3/cms-extensionmanager": "^12.4 || ^13.4",
"typo3/cms-felogin": "^12.4 || ^13.4",
"typo3/cms-fluid-styled-content": "^12.4 || ^13.4",
"typo3/cms-lowlevel": "^12.4 || ^13.4",
"typo3/cms-reports": "^12.4 || ^13.4",
"typo3/cms-tstemplate": "^12.4 || ^13.4",
"typo3/coding-standards": "^0.7 || ^0.8",
"typo3/testing-framework": "^8.0",
"typo3/cms-install": "^12.4 || ^13.4",
"symfony/translation": "^6.4 || ^7.1",
"symfony/yaml": "^6.4 || ^7.1"
},
"replace": {
"typo3-ter/oidc-server": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"R3H6\\OidcServer\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"R3H6\\OidcServer\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"lock": false,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "oidc_server",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-autoload-dump": [
"chmod 600 .Build/vendor/r3h6/oauth2-server/Resources/Private/Keys/private.key",
"chmod 600 .Build/vendor/r3h6/oauth2-server/Resources/Private/Keys/public.key"
],
"ci:coverage": [
"@ci:coverage:unit",
"@ci:coverage:functional",
"@ci:coverage:merge"
],
"ci:coverage:functional": [
"@coverage:create-directories",
"XDEBUG_MODE=coverage phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml --coverage-filter Classes --coverage-php=.Build/coverage/functional.cov Tests/Functional"
],
"ci:coverage:merge": [
"@coverage:create-directories",
"XDEBUG_MODE=coverage phpcov merge --html=.Build/coverage/ .Build/coverage/"
],
"ci:coverage:unit": [
"@coverage:create-directories",
"XDEBUG_MODE=coverage phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml --coverage-filter Classes --coverage-php=.Build/coverage/unit.cov Tests/Unit"
],
"ci:static": [
"@ci:php:lint",
"@ci:php:cs",
"@ci:php:stan",
"@ci:yaml:lint",
"@ci:xliff:lint",
"@ci:typo3:scan"
],
"ci:libs:pack": "phar-composer build softcreatr/jsonpath Resources/Private/Php/jsonpath.phar",
"ci:php:cs": "php-cs-fixer fix -v --dry-run --using-cache no --diff",
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:stan": "phpstan --no-progress",
"ci:test:functional": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml Tests/Functional/",
"ci:test:unit": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/",
"ci:typo3:scan": "typo3scan scan Classes/ -i strong",
"ci:xliff:lint": "php Build/Scripts/xliff-lint lint:xliff Resources/Private/Language",
"ci:yaml:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r php .Build/bin/yaml-lint",
"coverage:create-directories": "mkdir -p .Build/coverage",
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php:cs": "php-cs-fixer fix",
"rector:fix": "rector process",
"rector:test": "rector process --dry-run"
}
}