Skip to content

Commit 6b7dc30

Browse files
committed
fix composer.json
1 parent 9092200 commit 6b7dc30

File tree

1 file changed

+29
-31
lines changed

1 file changed

+29
-31
lines changed

composer.json

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description":"Extends the FAQ bundle in Contao. The bundle allows you to highlight very popular FAQ articles or your personal recommendations in the Contao frontend. It also introduces voting support for FAQ articles.",
44
"keywords":["contao", "module", "extension", "faq", "helpful"],
55
"type":"contao-bundle",
6-
"license":"LGPL-3.0+",
6+
"license":"LGPL-3.0-or-later",
77
"authors":[
88
{
99
"name":"Helmut Schottmüller",
@@ -14,41 +14,39 @@
1414
"php": ">=5.6.0",
1515
"contao/core-bundle":"~4.4",
1616
"contao/faq-bundle": "^4.4",
17-
"symfony/framework-bundle": "^3.3"
17+
"symfony/dependency-injection": "^3.0 || ^4.0",
18+
"symfony/config": "^3.0 || ^4.0",
19+
"symfony/http-kernel": "^3.0 || ^4.0"
1820
},
1921
"require-dev": {
20-
"contao/manager-plugin": "^2.0",
21-
"doctrine/doctrine-cache-bundle": "^1.3",
22-
"friendsofphp/php-cs-fixer": "^2.6",
23-
"leofeyer/optimize-native-functions-fixer": "^1.1",
24-
"php-http/guzzle6-adapter": "^1.1",
25-
"php-http/message-factory": "^1.0.2",
26-
"phpunit/phpunit": "^5.7.26",
27-
"symfony/phpunit-bridge": "^3.2"
22+
"contao/manager-plugin": "^2.0",
23+
"friendsofphp/php-cs-fixer": "^2.6",
24+
"phpunit/phpunit": "^5.7.26",
25+
"symfony/phpunit-bridge": "^3.2"
2826
},
2927
"conflict": {
30-
"contao/manager-plugin": "<2.0 || >=3.0"
31-
},
28+
"contao/manager-plugin": "<2.0 || >=3.0"
29+
},
3230
"autoload": {
33-
"psr-4": {
34-
"Hschottm\\FaqExtensionsBundle\\": "src/"
35-
},
36-
"classmap": [
37-
"src/Resources/contao/"
38-
],
39-
"exclude-from-classmap": [
40-
"src/Resources/contao/config/",
41-
"src/Resources/contao/dca/",
42-
"src/Resources/contao/languages/",
43-
"src/Resources/contao/templates/"
44-
]
45-
},
46-
"autoload-dev": {
47-
"psr-4": {
48-
"Hschottm\\FaqExtensionsBundle\\Tests\\": "tests/"
49-
}
31+
"psr-4": {
32+
"Hschottm\\FaqExtensionsBundle\\": "src/"
5033
},
51-
"extra":{
52-
"contao-manager-plugin": "Hschottm\\FaqExtensionsBundle\\ContaoManager\\Plugin"
34+
"classmap": [
35+
"src/Resources/contao/"
36+
],
37+
"exclude-from-classmap": [
38+
"src/Resources/contao/config/",
39+
"src/Resources/contao/dca/",
40+
"src/Resources/contao/languages/",
41+
"src/Resources/contao/templates/"
42+
]
43+
},
44+
"autoload-dev": {
45+
"psr-4": {
46+
"Hschottm\\FaqExtensionsBundle\\Tests\\": "tests/"
5347
}
48+
},
49+
"extra":{
50+
"contao-manager-plugin": "Hschottm\\FaqExtensionsBundle\\ContaoManager\\Plugin"
51+
}
5452
}

0 commit comments

Comments
 (0)