-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 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
{
"name": "jc97/contao-quotes-collection-bundle",
"type": "contao-bundle",
"description": "Contao 4 Quotes Collection Bundle",
"license": "MIT",
"authors": [
{
"name": "Julian Knorr",
"homepage": "https://github.com/jc97"
}
],
"require": {
"php": "^5.6 || ^7.0",
"contao/core-bundle": "^4.4"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.12",
"phpunit/phpunit": ">=5.7.26"
},
"extra": {
"contao-manager-plugin": "jc97\\ContaoQuotesCollectionBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"jc97\\ContaoQuotesCollectionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"jc97\\ContaoQuotesCollectionBundle\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/jc97/contao-quotes-collection-bundle/issues",
"source": "https://github.com/jc97/contao-quotes-collection-bundle"
}
}