This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
54 lines (54 loc) · 1.62 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
{
"name": "caretaker/caretaker_instance",
"description": "TYPO3 caretaker instance",
"type": "typo3-cms-extension",
"homepage": "https://github.com/TYPO3-Caretaker/",
"license": "GPL-2.0",
"require": {
"typo3/cms-core": "^11.5",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*"
},
"require-dev": {
"nimut/testing-framework": "^4.0 || ^5.0"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"psr-4": {
"Caretaker\\CaretakerInstance\\": "Classes"
},
"classmap": [
"classes/",
"services/"
]
},
"autoload-dev": {
"psr-4": {
"Caretaker\\CaretakerInstance\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/caretaker_instance": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor"
},
"scripts": {
"test:phpunit": "TYPO3_PATH_ROOT=$PWD/.Build/public/ .Build/vendor/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit/",
"test:phplint": "find . -name \\*.php ! -path \"./.Build/*\" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \\;",
"post-autoload-dump": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/caretaker_instance\") || symlink(__DIR__,$extFolder);'"
]
},
"extra": {
"typo3/cms": {
"extension-key": "caretaker_instance",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
}
}