forked from georgringer/news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.66 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
{
"name": "georgringer/news",
"type": "typo3-cms-extension",
"description": "Versatile news extension, based on extbase & fluid for TYPO3 CMS",
"keywords": [
"TYPO3",
"extension",
"article",
"news"
],
"homepage": "https://ringer.it",
"authors": [
{
"name": "Georg Ringer",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^10.4 || ^11"
},
"conflict": {
"symfony/finder": "2.7.44 || 2.8.37 || 3.4.7 || 4.0.7"
},
"suggest": {
"reelworx/rx-shariff": "GDPR compliant social sharing",
"georgringer/numbered-pagination": "Improved pagination API"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
"typo3/cms-install": "^10.4 || ^11"
},
"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",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "news",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}