forked from pdir/social-feed-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
100 lines (100 loc) · 3.33 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
{
"name":"pdir/social-feed-bundle",
"description":"Social feed extension for Contao CMS",
"keywords":["contao","social","feed","facebook","instagram","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":"Kamil Kuzminski",
"homepage":"https://github.com/qzminski",
"role":"Developer"
},
{
"name":"Mathias Arzberger",
"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": "^7.4 || ^8.0",
"contao/core-bundle": "^4.4",
"contao/news-bundle": "^4.4",
"nickdnk/graph-sdk": "^6.0 || ^7.0",
"abraham/twitteroauth": "~4.0",
"guzzlehttp/guzzle": "^7.3",
"kevinrob/guzzle-cache-middleware": "^3.2",
"doctrine/cache": "^2.1",
"doctrine/dbal": "^2.0 || ^3.0",
"samoritano/linkedin-api-php-client-v2": "dev-master as 0.0.20"
},
"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"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Pdir\\SocialFeedBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/user?u=28241718"
},
{
"type": "corporate",
"url": "https://contao-themes.net/sponsoring.html"
}
],
"suggest": {
"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
}
}
}