-
-
Notifications
You must be signed in to change notification settings - Fork 355
/
composer.json
91 lines (91 loc) · 2.96 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
{
"name": "georgringer/news",
"type": "typo3-cms-extension",
"description": "Versatile news system based on Extbase & Fluid and using the latest technologies provided by TYPO3 CMS.",
"keywords": [
"TYPO3",
"extension",
"article",
"news"
],
"homepage": "https://extensions.typo3.org/extension/news",
"support": {
"source": "https://github.com/georgringer/news",
"issues": "https://github.com/georgringer/news/issues",
"docs": "https://docs.typo3.org/p/georgringer/news/main/en-us/"
},
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://ringer.it"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": ">= 8.1 < 8.4",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-backend": "^12.4.2 || ^13.1",
"typo3/cms-core": "^12.4.2 || ^13.1",
"typo3/cms-extbase": "^12.4.2 || ^13.1",
"typo3/cms-frontend": "^12.4.2 || ^13.1",
"typo3/cms-fluid": "^12.4.2 || ^13.1"
},
"suggest": {
"reelworx/rx-shariff": "GDPR compliant social sharing",
"georgringer/news-tagsuggest": "On the fly creation of tag records within a news record",
"georgringer/numbered-pagination": "Improved pagination API",
"typo3/cms-install": "Upgrade wizards",
"typo3/cms-scheduler": "XML and ICS import",
"typo3/cms-seo": "Sitemaps"
},
"require-dev": {
"typo3/cms-install": "^12.4.2 || ^13.1",
"typo3/cms-seo": "^12.4.2 || ^13.1",
"typo3/testing-framework": "^8.0.9",
"phpunit/phpunit": "^10.5",
"typo3/coding-standards": "^0.5.5",
"friendsofphp/php-cs-fixer": "^3.47.1",
"phpstan/phpdoc-parser": "^1.12.10",
"webmozart/assert": "^1.11.0"
},
"autoload": {
"psr-4": {
"GeorgRinger\\News\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"GeorgRinger\\News\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/news": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"lock": false,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"scripts": {
"cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "news",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}