-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·77 lines (77 loc) · 2.23 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
{
"name": "friends-of-contao/contao-twitterreader",
"description": "Provides a twitter reader extension for Contao.",
"keywords": ["twitter", "contao"],
"type": "contao-module",
"license": [
"LGPL-3.0+",
"CC-BY-NC-3.0"
],
"authors": [
{
"name": "Stefan Lindecke",
"homepage": "http://www.lindesbs.de",
"role": "Developer"
},
{
"name": "Kirsten Roschanski",
"homepage": "http://kirsten-roschanski.de/",
"email": "kontakt@kirsten-roschanski.de",
"role": "Developer"
},
{
"name": "Cliff Parnitzky",
"homepage": "https://contao.cliff-parnitzky.de",
"email": "contao@cliff-parnitzky.de",
"role": "Developer"
},
{
"name": "Helmut Schottmüller",
"homepage": "https://github.com/hschottm",
"email": "hschottm@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/friends-of-contao/contao-twitterreader/issues",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/friends-of-contao/contao-twitterreader"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle":"~4.13",
"abraham/twitteroauth": "^4.0"
},
"require-dev": {
"contao/manager-plugin": "^2.3.1",
"phpunit/phpunit": "^9.3",
"symfony/phpunit-bridge": "^5.4"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"FOC\\TwitterReaderBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"contao": {
"runonce": [
"src/Resources/contao/config/runonce.php"
]
},
"contao-manager-plugin": "FOC\\TwitterReaderBundle\\ContaoManager\\Plugin"
},
"prefer-stable": true,
"minimum-stability": "dev"
}