-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
113 lines (113 loc) · 4.01 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
{
"name": "tritum/turnstile",
"type": "typo3-cms-extension",
"description": "TYPO3 Extension to add Turnstile to EXT:form",
"license": ["GPL-2.0-or-later"],
"homepage": "https://github.com/tritum/turnstile",
"support": {
"issues": "https://github.com/tritum/turnstile/issues"
},
"authors": [
{
"name": "TRITUM GmbH",
"email": "[email protected]",
"homepage": "https://www.tritum.de",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.1 | ^8.2",
"ext-json": "*",
"ramsey/uuid": "^4.7",
"typo3/cms-core": "^11.5.0 || ^12.4.0",
"typo3/cms-extbase": "^11.5.0 || ^12.4.0",
"typo3/cms-fluid": "^11.5.0 || ^12.4.0",
"typo3/cms-form": "^11.5.0 || ^12.4.0",
"usarise/turnstile": "^0.4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16 | ^3.13",
"helmich/typo3-typoscript-lint": "^2.3 | ^3.0",
"overtrue/phplint": "^2.0 | ^5.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/cms-fluid-styled-content": "^11.5@dev || ^12.1@dev",
"typo3/coding-standards": "^0.3 | ^0.5",
"typo3/testing-framework": "^7.x-dev",
"vimeo/psalm": "^3.0 | ^4.0 | ^5.0",
"zbateson/mail-mime-parser": "^2.0"
},
"suggest": {
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"TRITUM\\Turnstile\\": "Classes/",
"TRITUM\\Turnstile\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/", "[ -L .build/web/typo3conf/ext/turnstile ] || ln -snvf ../../../../. .build/web/typo3conf/ext/turnstile"
],
"ci:lint:php": [
"phplint -c build/phplint.yaml"
],
"ci:lint:yaml": [
"php build/yaml-lint.php Configuration/"
],
"ci:lint:typoscript": [
"typoscript-lint -c build/tslint.yaml"
],
"ci:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:gen-baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.neon"
],
"ci:psalm": [
"psalm --config=build/psalm.xml --php-version=$(php -r 'echo phpversion();')"
],
"ci:psalm:gen-baseline": [
"psalm --config=build/psalm.xml --php-version=$(php -r 'echo phpversion();') --set-baseline=build/psalm-baseline.xml"
],
"ci:cgl:check": [
"php-cs-fixer fix --config build/phpcs.dist -v --dry-run"
],
"ci:cgl:fix": [
"php-cs-fixer fix --config build/phpcs.dist"
],
"ci:tests:unit:cover": [
"mkdir -p .build/logs",
"phpdbg -d memory_limit=1024M -qrr ./.build/bin/phpunit -c build/phpunit.xml --coverage-text --colors=never --coverage-clover .build/logs/clover.xml --coverage-cobertura .build/logs/cobertura.xml --coverage-html .build/logs/html"
],
"ci:tests:unit": [
"phpunit -c build/phpunit.xml --log-junit .build/logs/junit.xml"
],
"ci:tests:functional": [
"phpunit -c build/phpunit-functionals.xml --log-junit .build/logs/junit-functionals.xml"
]
},
"extra": {
"typo3/cms": {
"extension-key": "turnstile",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
}
}
}