forked from lochmueller/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.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
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
84
85
86
{
"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.2||^7.3||^7.4",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^10.4.6",
"lochmueller/autoloader": "^7.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",
"typo3/testing-framework": "^6.3",
"squizlabs/php_codesniffer": "^2.6",
"friendsofphp/php-cs-fixer": "^2.16",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3"
},
"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": {
"code": [
"@tool:php-cs-fixer"
],
"tool:php-cs-fixer": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php"
],
"tool:phpdoc": [
"docker run --rm -v $(pwd):/data phpdoc/phpdoc -d Classes -t .Build/phpdoc"
]
}
}