-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
104 lines (104 loc) · 2.41 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
{
"name": "lochmueller/calendarize-news",
"type": "typo3-cms-extension",
"description": "Add Event options to the news extension",
"autoload": {
"psr-4": {
"HDNET\\CalendarizeNews\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\CalendarizeNews\\Tests\\": "Tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"keywords": [
"TYPO3 CMS",
"Calendarize",
"News",
"Extbase"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "webmaster@fruit-lab.de",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"lochmueller/calendarize": "^13.0",
"georgringer/news": "^11.0"
},
"replace": {
"typo3-ter/calendarize-news": "self.version"
},
"homepage": "https://github.com/lochmueller/calendarize_news",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/lochmueller/calendarize_news/issues"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "1.2.0",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.82",
"typo3/testing-framework": "^6.0.0||^7.0.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "calendarize_news",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"code": [
"@tool:php-cs-fixer",
"@tool:phpstan"
],
"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/UnitTests.xml"
],
"tool:phpunit:functional": [
"phpunit --configuration=Tests/Functional/FunctionalTests.xml"
],
"tool:phpdoc": [
"docker run --rm -v $(pwd):/data phpdoc/phpdoc -d Classes -t .Build/phpdoc"
],
"tool:phpstan": [
"phpstan analyse -c phpstan.neon"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
}
}