-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.81 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
{
"name": "werkraummedia/maps",
"description": "Extension to visualize maps",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"homepage": "https://github.com/werkraum-media/maps",
"authors": [
{
"name": "Dirk Koritnik",
"email": "koritnik@werkraum-media.de",
"role": "Developer"
}
],
"require": {
"php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"typo3/cms-core": "^10.4 || ^11.5",
"typo3/cms-extbase": "^10.4 || ^11.5",
"typo3/cms-fluid": "^10.4 || ^11.5",
"typo3/cms-frontend": "^10.4 || ^11.5"
},
"autoload": {
"psr-4": {
"WerkraumMedia\\Maps\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"WerkraumMedia\\Maps\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/maps ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/maps"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "maps",
"web-dir": ".Build/web"
},
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"require-dev": {
"rector/rector": "^0.11.52",
"typo3/cms-backend": "^10.4 || ^11.5",
"typo3/cms-fluid-styled-content": "^10.4 || ^11.5",
"typo3/cms-extensionmanager": "^10.4 || ^11.5",
"typo3/cms-tstemplate": "^10.4 || ^11.5",
"typo3/testing-framework": "^6.14"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}