forked from DrWh0286/t3events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.33 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.33 KB
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": "dwenzel/t3events",
"type": "typo3-cms-extension",
"description": "Versatile events extension for the TYPO3 CMS",
"keywords": [
"TYPO3",
"extension",
"events"
],
"license": [
"GPL-2.0+"
],
"authors": [
{
"name": "Dirk Wenzel",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"typo3/cms-core": ">=8.7.0 || >=9.5.0",
"dwenzel/t3calendar": "~0.6",
"dwenzel/t3extension-tools": "~1.3"
},
"require-dev": {
"nimut/testing-framework": "^4.0",
"phpunit/phpunit": " ^7.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"DWenzel\\T3events\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"DWenzel\\T3events\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source",
"typo3/cms-core": "source",
"*": "dist"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"mkdir -p .Build/log/coverage/",
"[ -L .Build/Web/typo3conf/ext/t3events ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/t3events"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}