-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.6 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
{
"name": "o-ba/tailor_ext",
"description": "Example extension using tailor cli tool for publishing to TER",
"type": "typo3-cms-extension",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-2.0-or-later",
"keywords": ["tailor", "ter", "TYPO3", "REST API"],
"require": {
"php": ">7.4",
"typo3/cms-core": "^10 || ^11 || ~12.0@dev"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"typo3/tailor": "^1.0",
"typo3/testing-framework": "^6.1",
"typo3/coding-standards": "^0.2.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "tailor_ext",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"if [ ! -e .Build/Web/vendor ]; then cd .Build/Web && ln -s ../vendor && cd -; fi"
],
"test:unit": [
"@php .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/"
],
"cs": [
"@php .Build/bin/php-cs-fixer fix --dry-run --diff --diff-format=udiff --config=.Build/vendor/typo3/coding-standards/templates/extension_php_cs.dist Classes/ Tests/"
]
},
"autoload": {
"psr-4": {
"Bo\\TailorExt\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Bo\\TailorExt\\Tests\\": "Tests/"
}
}
}