forked from siwaonline/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.12 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
{
"name": "siwaonline/social_stream",
"type": "typo3-cms-extension",
"description": "Social Stream - Crawls the data from a Social Media Page and saves it as news record",
"homepage": "https://www.siwa.at",
"license": [
"GPL-2.0+"
],
"keywords": [
"TYPO3 CMS",
"Social Stream",
"Siwa"
],
"support": {
"issues": "https://github.com/siwaonline/social_stream/issues"
},
"require": {
"typo3/cms-core": "^9.5",
"georgringer/news": ">=7.0.0"
},
"version": "3.1.1",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/social_stream ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/social_stream"
],
"post-update-cmd": [
"php .Build/Web/typo3/cli_dispatch.phpsh extbase extension:install social_stream"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"Socialstream\\SocialStream\\": "Classes"
}
}
}