forked from hofff/contao-rate-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.08 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
{
"name": "hofff/contao-rate-it",
"description": "RateIt extension for the Contao Open Source CMS as contao 4 bundle",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"rating",
"rateit",
"bewertung",
"bundle"
],
"authors": [
{
"name": "Nicky Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Maintainer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Developer"
}
],
"homepage": "https://www.hofff.com",
"support": {
"issues": "https://github.com/hofff/contao-rate-it/issues",
"source": "https://github.com/hofff/contao-rate-it"
},
"require": {
"php": "^7.1 || ^8.0",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-session": "*",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.5 || ^3.0",
"symfony/config": "^4.4 || ^5.1",
"symfony/console": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/http-foundation": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.1",
"symfony/security-core": "^4.4 || ^5.1",
"symfony/translation-contracts": "^1.1 || ^2.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"conflict": {
"cgo-it/contao-rate-it": "*",
"cgo-it/contao-rate-it-bundle": "*",
"cgo-it/news4ward-rateit": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\RateIt\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "0.5.x-dev",
"dev-master": "0.4.x-dev"
},
"contao": {
"runonce": [
"src/Resources/contao/runonce/create-initial-data.php"
]
},
"contao-manager-plugin": "Hofff\\Contao\\RateIt\\ContaoManager\\Plugin"
}
}