This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.63 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
{
"name": "codappix/search_core_twitter",
"type": "typo3-cms-extension",
"description": "Codappix Search Core, Twitter integration.",
"homepage": "https://github.com/Codappix/search_core_twitter",
"license": ["GPL-2.0-or-later"],
"autoload": {
"psr-4": {
"Codappix\\SearchCoreTwitter\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\SearchCoreTwitter\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"require": {
"php": ">=7.0.0",
"typo3/cms": ">= 7.6 < 9.0",
"codappix/search_core": "~0.0.1",
"j7mbo/twitter-api-php": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~6.4.4",
"typo3/testing-framework": "~1.1.5",
"squizlabs/php_codesniffer": "~3.1.1"
},
"config": {
"optimize-autoloader": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/search_core_twitter ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/search_core_twitter"
]
},
"extra": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de",
"role": "lead"
}
]
}