forked from TYPO3/CmsComposerInstallers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.16 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
{
"name": "typo3/cms-composer-installers",
"type": "composer-plugin",
"license": "GPL-2.0+",
"description": "TYPO3 CMS Installers",
"keywords": [
"installer", "typo3", "cms", "core", "extension"
],
"homepage": "https://github.com/TYPO3/CmsComposerInstallers",
"authors": [
{
"name": "Christian Opitz",
"email": "christian.opitz@netresearch.de"
},
{
"name": "Helmut Hummel",
"email": "info@helhum.io"
},
{
"name": "Lars Peipmann",
"email": "lars@peipmann.de"
}
],
"autoload": {
"psr-0": { "": "Classes/"}
},
"minimum-stability": "dev",
"replace": {
"lw/typo3cms-installers": "*",
"netresearch/composer-installers": "*"
},
"require": {
"composer-plugin-api": "^1.0.0"
},
"conflict": {
"composer/installers": "<1.0.24,>1.0.24"
},
"require-dev": {
"composer/composer": "1.*"
},
"extra": {
"class": "TYPO3\\CMS\\Composer\\Installer\\Plugin",
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}