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
117 lines (117 loc) · 3.36 KB
/
composer.json
File metadata and controls
117 lines (117 loc) · 3.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"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.4||^8.0",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^10.4||^11.5",
"lochmueller/autoloader": "^7.1",
"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": {
"brotkrueml/schema": "Output of structured data information for better Google Search Result User Experience",
"georgringer/numbered-pagination": "Pagination with reduced amount of pages",
"typo3/cms-dashboard": "Dashboard widgets"
},
"require-dev": {
"typo3/testing-framework": "^6.5",
"typo3/cms-workspaces": "^10.4||^11.5",
"squizlabs/php_codesniffer": "^2.6",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3",
"phpstan/phpstan": "^0.12",
"qossmic/deptrac-shim": "^0.19"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "calendarize",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"code": [
"@tool:php-cs-fixer",
"@tool:phpunit"
],
"tool:php-cs-fixer": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php"
],
"tool:php-cs-fixer-check": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --dry-run"
],
"tool:phpunit": [
"phpunit --configuration=Tests/Unit/Build/UnitTests.xml"
],
"tool:phpunit:functional": [
"phpunit --configuration=Tests/Functional/Build/FunctionalTests.xml"
],
"tool:phpdoc": [
"docker run --rm -v $(pwd):/data phpdoc/phpdoc -d Classes -t .Build/phpdoc"
],
"tool:rector": [
"docker run --rm --volume $PWD:/app --user $(id -u):$(id -g) ghcr.io/sabbelasichon/typo3-rector process --config=Resources/Private/Build/Rector.php"
],
"tool:phpstan": [
"phpstan analyse -c phpstan.neon"
],
"tool:deptrac": [
"deptrac"
]
}
}