-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
60 lines (60 loc) · 2.01 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
{
"name": "inspiredminds/contao-wordpressimport",
"description": "Contao 4 bundle that allows you to import news articles from WordPress posts via the WordPress JSON API.",
"keywords": ["contao", "wordpress", "import", "news"],
"type": "contao-bundle",
"homepage": "https://github.com/inspiredminds/contao-wordpressimport",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Fritz Michael Gschwantner",
"homepage": "http://www.inspiredminds.at",
"email": "fmg@inspiredminds.at",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inspiredminds/contao-wordpressimport/issues",
"source": "https://github.com/inspiredminds/contao-wordpressimport",
"forum": "https://community.contao.org/de"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fritzmg"
}
],
"require": {
"php": ">=7.1",
"contao/core-bundle": "^4.9 || ^5.0",
"doctrine/dbal": "^2.11 || ^3.0",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"nyholm/psr7": "^1.2",
"paquettg/php-html-parser": "^2.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
"webmozart/path-util": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"WordPressImportBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "WordPressImportBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true
}
},
"suggest": {
"codefog/contao-news_categories": "Allows to import news categories from WordPress as well."
}
}