forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.25 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
78
79
80
81
82
83
84
{
"name": "apache-solr-for-typo3/solr",
"type": "typo3-cms-extension",
"description": "Apache Solr for TYPO3",
"license": "GPL-3.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "solr", "search"],
"homepage": "http://www.typo3-solr.com",
"authors": [
{
"name": "Ingo Renner",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TYPO3-Solr/ext-solr/issues",
"forum": "http://forum.typo3.org/index.php/f/53/",
"wiki": "https://forge.typo3.org/projects/extension-solr/wiki",
"source": "https://github.com/TYPO3-Solr/ext-solr"
},
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"typo3/cms-core": "^10.4.10",
"typo3/cms-backend": "^10.4.10",
"typo3/cms-extbase": "^10.4.10",
"typo3/cms-frontend": "^10.4.10",
"typo3/cms-fluid": "^10.4.10",
"typo3/cms-reports": "^10.4.10",
"typo3/cms-scheduler": "^10.4.10",
"typo3/cms-tstemplate": "^10.4.10",
"solarium/solarium": ">=6.0 <7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.6 || ^8",
"nimut/testing-framework": "^5.0.0"
},
"replace": {
"typo3-ter/solr": "self.version",
"typo3-ter/solrfluid": "*",
"apache-solr-for-typo3/solrfluid": "*"
},
"autoload": {
"classmap": [
"Resources/Private/Php/"
],
"psr-4": {
"ApacheSolrForTypo3\\Solr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheSolrForTypo3\\Solr\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/Web/typo3/sysext/core/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/solr ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/solr"
],
"extension-create-libs": [
"@composer install -d Resources/Private/Php/ComposerLibraries"
],
"extension-build": [
"@extension-create-libs"
]
},
"extra": {
"branch-alias": {
"dev-main": "12.0.x-dev"
},
"typo3/cms": {
"extension-key": "solr",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}