-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
122 lines (122 loc) · 3.36 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
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
118
119
120
121
122
{
"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": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^12.4",
"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",
"typo3/cms-dashboard": "Dashboard widgets"
},
"require-dev": {
"typo3/testing-framework": "^8.0",
"typo3/cms-workspaces": "^12.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3",
"phpstan/phpstan": "^1.10",
"qossmic/deptrac-shim": "^0.24||^1.0"
},
"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
}
},
"branch-alias": {
"dev-master": "13.x-dev"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"code-fix": [
"@tool:php-cs-fixer"
],
"code-check": [
"@tool:php-cs-fixer-check",
"@tool:phpunit",
"@tool:phpstan",
"@tool:deptrac"
],
"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 --memory-limit=1G"
],
"tool:deptrac": [
"deptrac"
]
}
}