mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 01:16:10 +01:00
Daniel Siepmann
16bc22aa44
Check which version to run and switch TYPO3 bootstrapping. Also allow tests to run with TYPO3 CMS 7.6 again.
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|