forked from TYPO3-Caretaker/caretaker_instance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.22 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
{
"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": "^12.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*"
},
"require-dev": {
"helmich/typo3-typoscript-lint": "^2.5",
"mikey179/vfsstream": "^1.6",
"friendsofphp/php-cs-fixer": "^3.2",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"behat/behat": "^3.8",
"helhum/typo3-console": "^7.0",
"se/selenium-server-standalone": "^3.141",
"symfony/config": "^5.3",
"nimut/testing-framework": "6.x-dev",
"friends-of-behat/mink-extension": "^2.5",
"behat/mink-selenium2-driver": "^1.5",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"drevops/behat-screenshot": "^1.1"
},
"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",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"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"
}
}
}