forked from FluidTYPO3/fluidpages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.95 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
{
"name": "fluidtypo3/fluidpages",
"description": "The fluidpages package from FluidTYPO3",
"require": {
"fluidtypo3/flux": "*"
},
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"templating",
"flux",
"fluidpages",
"fedext",
"fluid"
],
"homepage": "http://fluidtypo3.org",
"license": "GPL-2.0+",
"version": "3.2.0",
"support": {
"irc": "irc://irc.freenode.org/fedext",
"issues": "https://github.com/FluidTYPO3/fluidcontent/issues"
},
"suggest": {
"fluidtypo3/fluidcontent": "Gives the ability to render custom content elements with pure fluid.",
"fluidtypo3/fluidcontent_core": "Gives the ability to render core content elements with pure fluid."
},
"autoload": {
"psr-4": {
"FluidTYPO3\\Fluidpages\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FluidTYPO3\\Fluidpages\\Tests\\": "Tests/"
},
"classmap": [
"vendor/typo3/cms/typo3/sysext/extbase",
"vendor/typo3/cms/typo3/sysext/fluid",
"vendor/typo3/cms/typo3/sysext/core",
"vendor/typo3/cms/typo3/sysext/backend",
"vendor/typo3/cms/typo3/sysext/frontend",
"vendor/typo3/cms/typo3/sysext/lang"
]
},
"require-dev": {
"fluidtypo3/development": "*",
"fluidtypo3/flux": "dev-development"
},
"repositories": [
{
"type": "package",
"package": {
"name": "typo3/cms",
"version": "6.2.10",
"dist": {
"url": "https://github.com/TYPO3/TYPO3.CMS/archive/6.2.10.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "typo3/cms",
"version": "7.1.0",
"dist": {
"url": "https://github.com/TYPO3/TYPO3.CMS/archive/7.1.0.zip",
"type": "zip"
}
}
}
]
}