-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
114 lines (114 loc) · 3.65 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pdir/social-feed-bundle",
"description": "Social feed extension for Contao CMS",
"keywords": [
"contao",
"social",
"feed",
"facebook",
"instagram",
"x",
"twitter",
"google plus",
"pinterest",
"vk",
"rss",
"bundle",
"linkedin"
],
"type": "contao-bundle",
"homepage": "https://pdir.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Philipp Seibt",
"homepage": "https://pdir.de/",
"role": "Developer"
},
{
"name": "Mathias Arzberger",
"homepage": "https://pdir.de/",
"role": "Developer"
},
{
"name": "pdir GmbH",
"homepage": "https://pdir.de/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pdir/social-feed-bundle/issues",
"source": "https://github.com/pdir/social-feed-bundle",
"docs": "https://docs.pdir.de",
"donate": "https://contao-themes.net/sponsoring.html"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"contao/core-bundle": "^4.13 || ^5.3",
"contao/news-bundle": "^4.13 || ^5.3",
"nickdnk/graph-sdk": "^6.0 || ^7.0",
"abraham/twitteroauth": "~4.0",
"guzzlehttp/guzzle": "6.0 | ~7.7",
"kevinrob/guzzle-cache-middleware": "^3.2",
"doctrine/cache": "^2.1",
"doctrine/dbal": "^2.0 || ^3.0",
"samoritano/linkedin-api-php-client-v2": "^0.1"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"contao/manager-plugin": "^2.0",
"contao/easy-coding-standard": "^3.0",
"phpunit/phpunit": "^8.4 || ^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.1",
"phpstan/phpstan": "^0.12 || ^1.0",
"phpstan/phpstan-phpunit": "^0.12 || ^1.0",
"phpstan/phpstan-symfony": "^0.12 || ^1.0",
"slam/phpstan-extensions": "^4.0 || ^5.1 || ^6.0",
"thecodingmachine/phpstan-strict-rules": "^0.12 || ^1.0"
},
"autoload": {
"psr-4": {
"Pdir\\SocialFeedBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pdir\\SocialFeedBundle\\Tests\\": "tests/"
}
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/user?u=28241718"
},
{
"type": "corporate",
"url": "https://contao-themes.net/sponsoring.html"
}
],
"suggest": {
"pdir/social-feed-plus-bundle": "Publish news, events or regular pages on all available social media channels at once or do this manually with one click / News, Events oder regulären Seiten auf allen verfügbaren Social Media Kanälen auf einmal veröffentlichen oder dies manuell mit einem Klick tun.",
"contao-themes-net/mate-theme-bundle": "MATE Theme includes all styles for social feed bundle. / MATE Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/odd-theme-bundle": "ODD Theme includes all styles for social feed bundle. / ODD Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/nature-theme-bundle": "NATURE Theme includes all styles for social feed bundle. / NATURE Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/zero-one-theme-bundle": "Show a social feed in the 0.1 Theme. / Zeige einen Social Feed im 0.1 Theme an."
},
"extra": {
"contao-manager-plugin": "Pdir\\SocialFeedBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao/manager-plugin": true,
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true,
"contao-community-alliance/composer-plugin": true
}
}
}