forked from TYPO3-Console/TYPO3-Console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (29 loc) · 686 Bytes
/
composer.json
File metadata and controls
30 lines (29 loc) · 686 Bytes
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
{
"name": "helhum/typo3-console",
"type": "typo3-cms-extension",
"description": "A reliable and powerful command line interface for TYPO3 CMS",
"homepage": "http://typo3.org",
"license": ["GPL-2.0+"],
"version": "1.0.2",
"require": {
"typo3/cms-core": ">=6.2.6,<8.0"
},
"replace": {
"typo3_console": "*"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"typo3/cms": {
"Package": {
"partOfMinimalUsableSystem": true
}
}
},
"autoload": {
"psr-4": {
"Helhum\\Typo3Console\\": "Classes"
}
}
}