forked from digedag/rn_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.15 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
{
"name" : "digedag/rn-base",
"description" : "A base library for extensions. Uses MVC design principles and domain driven development for TYPO3 extension development.",
"version" : "1.1.9",
"type" : "typo3-cms-extension",
"keywords" : [
"TYPO3 CMS",
"mvc"
],
"homepage" : "http://www.system25.de/",
"license" : "GPL-2.0+",
"authors" : [{
"name" : "René Nitzsche",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"source" : "https://github.com/digedag/rn_base",
"issues" : "https://github.com/digedag/rn_base/issues"
},
"replace" : {
"rn_base" : "self.version",
"typo3-ter/rn-base" : "self.version",
"digedag/rn-base" : "self.version"
},
"require" : {
"typo3/cms-core" : ">=4.5.0 <=7.6.99"
},
"autoload" : {
"classmap" : [
"action/",
"cache/",
"Classes/",
"exception/",
"filter/",
"maps/",
"misc/",
"mod/",
"model/",
"plot/",
"sv1/",
"tests/",
"util/",
"view/"
],
"files" : [
"class.tx_rnbase.php",
"class.tx_rnbase_configurations.php",
"class.tx_rnbase_controller.php",
"class.tx_rnbase_parameters.php"
]
}
}