forked from lochmueller/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.7 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "lochmueller/calendarize",
"type": "typo3-cms-extension",
"description": "Create a structure for timely controlled tables (e.g. events) and one plugin for the different output of calendar views (list, detail, month, year, day, week...). The extension is shipped with one default event table, but you can also 'calendarize' your own table/model. It is completely independent and configurable! Use your own models as event items in this calender. Development on https://github.com/lochmueller/calendarize",
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"autoload": {
"psr-4": {
"HDNET\\Calendarize\\": "Classes/",
"JMBTechnologyLimited\\ICalDissect\\": "Resources/Private/Php/ICalDissect/src/JMBTechnologyLimited/ICalDissect/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\Calendarize\\Tests\\": "Tests"
}
},
"keywords": [
"TYPO3 CMS",
"Calendarize",
"Calendar"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "webmaster@fruit-lab.de",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "~8.7.0||~9.5.0",
"lochmueller/autoloader": ">4.0.0",
"sabre/vobject": "^4.2"
},
"replace": {
"typo3-ter/calendarize": "self.version"
},
"homepage": "https://github.com/lochmueller/calendarize",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/lochmueller/calendarize/issues"
},
"suggest": {
"cabi/microformat": "Output of microformat information for better Google Search Result User Experience"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "2.0.0",
"typo3/testing-framework": "~2.0.0",
"squizlabs/php_codesniffer": "^2.6",
"friendsofphp/php-cs-fixer": "~2.14.0",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"tool:php-cs-fixer": [
"php-cs-fixer fix --config .php_cs"
],
"tool:phpdoc": [
"docker run --rm -v $(pwd):/data phpdoc/phpdoc -d Classes -t .Build/phpdoc"
]
}
}