forked from r3h6/TYPO3.EXT.form_typolink_checkbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.8 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
{
"name": "r3h6/form-typolink-checkbox",
"type": "typo3-cms-extension",
"description": "Typolink checkbox for TYPO3 form framework.",
"authors": [
{
"name": "R3 H6",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-form": "^12.4",
"php": "^8.0"
},
"require-dev": {
"typo3/testing-framework": "^7.0",
"saschaegerer/phpstan-typo3": "^1.0",
"friendsofphp/php-cs-fixer": "^3.3",
"helmich/typo3-typoscript-lint": "^3.0",
"typo3/coding-standards": "^0.5.0",
"phpmd/phpmd": "@stable",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"R3H6\\FormTypolinkCheckbox\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"R3H6\\FormTypolinkCheckbox\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/form-typolink-checkbox": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"ci:php:cs": "php-cs-fixer fix --config .php-cs-fixer.php -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:md": "phpmd Classes/ text phpmd-ruleset.xml",
"ci:php:stan": "phpstan --no-progress",
"ci:test:unit": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/",
"fix:php:cs": "php-cs-fixer fix --config .php-cs-fixer.php",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "form_typolink_checkbox"
}
}
}