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 9
/
composer.json
60 lines (60 loc) · 1.66 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
{
"name": "codappix/search_core",
"type": "typo3-cms-extension",
"description": "Codappix Search Core.",
"homepage": "https://github.com/Codappix/search_core",
"license": ["GPL-2.0-or-later"],
"autoload": {
"psr-4": {
"Codappix\\SearchCore\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\SearchCore\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"require": {
"php": ">=7.0.0",
"typo3/cms": ">= 7.6.0 < 9.0.0",
"ruflin/elastica": "~3.2"
},
"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 ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/search_core"
]
},
"extra": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
},
"authors": [
{
"name": "Justus Leon Moroni",
"email": "developer@leonmrni.com",
"role": "lead"
},
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de",
"role": "developer"
}
]
}