forked from TYPO3-Console/TYPO3-Console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
138 lines (135 loc) · 4.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"repositories": {
"local": {
"type": "path",
"url": "Packages/*"
},
"testing-framework": {
"type": "vcs",
"url": "https://github.com/helhum/TYPO3-testing-framework.git"
}
},
"name": "helhum/typo3-console",
"description": "A reliable and powerful command line interface for TYPO3 CMS",
"keywords": [
"TYPO3",
"cli",
"console",
"command",
"commandline"
],
"homepage": "http://insight.helhum.io/post/104528981610/about-the-beauty-and-power-of-typo3-console",
"support": {
"issues": "https://github.com/TYPO3-Console/typo3_console/issues"
},
"authors": [
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://helhum.io"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": "^7",
"helhum/typo3-console-plugin": "^2.0.2",
"typo3/cms-backend": "~8.7.22 || ~9.5.8",
"typo3/cms-core": "~8.7.22 || ~9.5.8",
"typo3/cms-extbase": "~8.7.22 || ~9.5.8",
"typo3/cms-extensionmanager": "~8.7.22 || ~9.5.8",
"typo3/cms-fluid": "~8.7.22 || ~9.5.8",
"typo3/cms-frontend": "~8.7.22 || ~9.5.8",
"typo3/cms-install": "~8.7.22 || ~9.5.8",
"typo3/cms-saltedpasswords": "*",
"typo3/cms-scheduler": "~8.7.22 || ~9.5.8",
"doctrine/annotations": "^1.4",
"symfony/console": "^3.4.4 || ^4.0",
"symfony/process": "^3.4.4 || ^4.0",
"helhum/config-loader": ">=0.9 <0.13"
},
"require-dev": {
"typo3/cms-reports": "~8.7.22 || ~9.5.8 || dev-master",
"typo3/cms-filemetadata": "~8.7.22 || ~9.5.8 || dev-master",
"typo3-console/convert-command-controller-command": "@dev",
"typo3-console/create-reference-command": "@dev",
"typo3-console/php-server-command": "^0.2",
"symfony/filesystem": "^3.2",
"nimut/testing-framework": "dev-allow-php73",
"cweagans/composer-patches": "^1.6",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"conflict": {
"typo3-ter/dbal": "*",
"friendsoftypo3/dbal": "*"
},
"autoload": {
"psr-4": {
"Helhum\\Typo3Console\\": [
"Classes/Console/",
"Classes/Compatibility/"
]
}
},
"autoload-dev": {
"psr-4": {
"Helhum\\Typo3Console\\Tests\\": "Tests/Console/"
}
},
"replace": {
"typo3-ter/typo3-console": "self.version"
},
"config": {
"preferred-install": {
"*": "dist"
},
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"bin": [
"typo3cms"
],
"scripts": {
"set-version": [
"Helhum\\Typo3Console\\Composer\\ScriptHelper::setVersion"
],
"extension-verify-composer-json": [
"Helhum\\Typo3Console\\Composer\\ScriptHelper::verifyComposerJsonOfExtension"
],
"extension-copy": [
"@extension-clean",
"mkdir -p ../extension",
"cp -r Resources/Private/ExtensionArtifacts/* ../extension/"
],
"extension-build": [
"@extension-copy",
"@composer config repositories.console '{\"type\": \"path\", \"url\": \"'$(pwd)'\", \"options\": {\"symlink\": false}}' -d ../extension",
"@composer install -d ../extension/"
],
"extension-release": [
"@extension-build",
"sed -i -e 's/\"typo3-console\\/extension\"/\"helhum\\/typo3-console\"/g' ../extension/composer.json",
"rm -rf ../extension/composer.lock",
"rm -rf ../extension/composer.json.bak",
"rm -rf ../extension/Libraries/bin/",
"rm -rf ../extension/Libraries/helhum/typo3-console/Packages/",
"rm -rf ../extension/Libraries/helhum/typo3-console/Resources/Private/ExtensionArtifacts/",
"rm -rf ../extension/Libraries/helhum/typo3-console/Resources/Private/Patches/",
"rm -rf ../extension/Libraries/helhum/typo3-console/Tests/",
"rm -rf ../extension/Libraries/helhum/typo3-console/.github/",
"mv ../extension/Libraries/helhum/typo3-console/Documentation/ ../extension/"
],
"extension-clean": [
"rm -rf ../extension/*"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}