-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
92 lines (92 loc) · 3.2 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
{
"name": "xima/xima-typo3-formcycle",
"type": "typo3-cms-extension",
"description": "TYPO3 extension to include your formcycle forms",
"homepage": "https://www.xima.de",
"license": [
"GPL-2.0+"
],
"keywords": [
"TYPO3 CMS",
"XIMA",
"formcycle"
],
"authors": [
{
"name": "Maik Schneider",
"role": "Developer",
"email": "maik.schneider@xima.de"
}
],
"repositories": [
{
"type": "github",
"url": "git@github.com:bmack/TYPO3-Console.git"
}
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"typo3/cms-core": "^13.0"
},
"require-dev": {
"bk2k/bootstrap-package": "^14.0 || dev-master",
"codeception/module-asserts": "^3.0",
"codeception/module-cli": "^2.0",
"codeception/module-db": "^3.1",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-webdriver": "^4.0",
"eliashaeussler/typo3-codeception-helper": "^1.1.2",
"friendsofphp/php-cs-fixer": "^3.34.1",
"helhum/typo3-console": "^8.1 || dev-issue/1169",
"helmich/typo3-typoscript-lint": "^3.2.1",
"saschaegerer/phpstan-typo3": "^1.1.2",
"symfony/translation": "^7.0",
"typo3/cms-base-distribution": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"typo3/testing-framework": "^9.1"
},
"autoload": {
"psr-4": {
"Xima\\XmFormcycle\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Xima\\XmFormcycle\\Tests\\": "Tests/"
}
},
"scripts": {
"php:fixer": "php vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "php vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"xml:lint": "find . -name '*.xlf' ! -path './vendor/*' ! -path './var/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout",
"typoscript:lint": "php vendor/bin/typoscript-lint",
"test:functional": "php vendor/bin/phpunit -c phpunit.functional.xml",
"test:unit": "php vendor/bin/phpunit -c phpunit.unit.xml",
"test:acceptance": [
".ddev/commands/web/init-typo3",
"codecept run --steps"
],
"ci:test:unit": "XDEBUG_MODE=coverage && phpunit -c phpunit.unit.xml",
"ci:test:functional": "XDEBUG_MODE=coverage && phpunit -c phpunit.functional.xml",
"ci:test:acceptance": "XDEBUG_MODE=coverage && codecept run Acceptance --coverage --coverage-xml",
"ci:php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' ! -path '*node_modules/*' ! -path './public/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": "php-cs-fixer --config=php-cs-fixer.php fix --dry-run --format=checkstyle > php-cs-fixer.xml || true",
"ci:php:stan": "phpstan --no-progress --error-format=checkstyle > phpstan.xml || true",
"ci:xml:lint": "find . -name '*.xlf' ! -path './public/*' ! -path './vendor/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout",
"ci:yaml:lint": "find . ! -path '*node_modules/*' ! -path './vendor/*' ! -path './public/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r yaml-lint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"codeception/c3": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "xm_formcycle"
}
}
}