-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
60 lines (60 loc) · 1.29 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
{
"name": "b13/make",
"description": "Kickstarter CLI tool for various TYPO3 functionalities",
"type": "typo3-cms-extension",
"homepage": "https://b13.com",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3",
"Kickstarter",
"Extensions",
"CLI"
],
"authors": [
{
"name": "Oliver Bartsch",
"email": "[email protected]"
}
],
"require": {
"typo3/cms-core": "^10.0 || ^11.0 || ^12.0 || ^13.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"typo3/cms-core": "^11.5",
"typo3/coding-standards": "^0.5",
"typo3/tailor": "^1.4",
"typo3/testing-framework": "^7.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "make",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"prepare-tests-10": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"B13\\Make\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Make\\Tests\\": "Tests/"
}
}
}