-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.35 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
{
"name": "netztechniker/defer",
"description": "Help create objects that need to be 'paused'",
"keywords": ["pause", "resume", "deferrable", "developer"],
"homepage": "https://github.com/tantegerda1/defer",
"license": "GPL-3.0+",
"authors": [
{
"name": "Ludwig Rafelsberger",
"role": "Developer"
}
],
"require": {
"netresearch/composer-patches-plugin": "~1.2",
"php": ">= 5.5.0, <= 5.6.99",
"typo3/cms": "6.2.*"
},
"type": "typo3-cms-extension",
"extra": {
"patches": {
"typo3/cms": {
"6.2.12": [
{
"url": "http://raw.githubusercontent.com/tantegerda1/defer/master/patches/typo3-cms-6.2.12.patch"
}
],
"6.2.13": [
{
"url": "http://raw.githubusercontent.com/tantegerda1/defer/master/patches/typo3-cms-6.2.13.patch"
}
],
"6.2.14": [
{
"url": "http://raw.githubusercontent.com/tantegerda1/defer/master/patches/typo3-cms-6.2.14.patch"
}
],
"6.2.26": [
{
"url": "http://raw.githubusercontent.com/tantegerda1/defer/master/patches/typo3-cms-6.2.26.patch"
}
]
}
}
},
"autoload": {
"psr-4": { "Netztechniker\\Defer\\": "Classes/" }
},
"support": {
"issues": "https://github.com/tantegerda1/defer/issues"
}
}