forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
129 lines (129 loc) · 4.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"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": "https://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": "https://talk.typo3.org",
"slack": "https://typo3.slack.com/archives/C02FF05Q4",
"source": "https://github.com/TYPO3-Solr/ext-solr",
"docs": "https://docs.typo3.org/p/apache-solr-for-typo3/solr/main/en-us/"
},
"require": {
"php": "^7.4.0 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"solarium/solarium": "6.2.3",
"typo3/cms-backend": "*",
"typo3/cms-core": "^11.5.14",
"typo3/cms-extbase": "*",
"typo3/cms-fluid": "*",
"typo3/cms-frontend": "*",
"typo3/cms-reports": "*",
"typo3/cms-scheduler": "*",
"typo3/cms-tstemplate": "*"
},
"require-dev": {
"typo3/coding-standards": ">=0.5.0",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit":"*",
"typo3/testing-framework": "^6.12",
"typo3/cms-fluid-styled-content": "*",
"scrutinizer/ocular": "*",
"sclable/xml-lint": "*"
},
"replace": {
"apache-solr-for-typo3/solrfluid": "*",
"typo3-ter/solr": "self.version",
"typo3-ter/solrfluid": "*"
},
"autoload": {
"psr-4": {
"ApacheSolrForTypo3\\Solr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheSolrForTypo3\\Solr\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/Web/typo3/sysext/core/Tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": true,
"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 req -d Resources/Private/Php/ComposerLibraries solarium/solarium:$(Build/Helpers/GET_LACAL_PACKAGE_VERSION_CONSTRAINT.sh solarium/solarium)"
],
"extension-build": [
"@extension-create-libs"
],
"tests:restore-git": "echo \"Retore composer.json to initial state:\" && git checkout composer.json",
"tests:env": [
"if [ -z ${TYPO3_VERSION+x} ]; then >&2 echo \"Can not proceed, because env var TYPO3_VERSION is not set\"; exit 1; else echo \"Setup test environment for TYPO3 ${TYPO3_VERSION}\"; fi",
"if [ \"${TYPO3_VERSION#*dev}\" != \"dev\" ]; then $COMPOSER_BINARY config minimum-stability dev; fi"
],
"tests:setup": [
"@tests:env",
"@composer req --prefer-source --update-with-all-dependencies typo3/cms-core:${TYPO3_VERSION}",
"@tests:restore-git"
],
"tests:unit": [
"phpunit --colors --config=Build/Test/UnitTests.xml --bootstrap=Build/Test/UnitTestsBootstrap.php"
],
"tests:integration": [
"phpunit --colors --config=Build/Test/IntegrationTests.xml --bootstrap=.Build/Web/typo3conf/ext/solr/Build/Test/IntegrationTestsBootstrap.php"
],
"t3:standards:fix": [
"php-cs-fixer fix"
],
"lint:xlf": [
"xmllint Resources/Private/Language/ -p '*.xlf'"
]
},
"extra": {
"branch-alias": {
"dev-release-11.5.x": "11.5.x-dev"
},
"typo3/cms": {
"extension-key": "solr",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"TYPO3-Solr": {
"version-matrix": {
"ext-tika": "^11.0",
"ext-solrfal": "^11.0",
"ext-solrconsole": "^11.0",
"ext-solrdebugtools": "^11.0",
"ext-solrfluidgrouping": "^11.0",
"ext-solrmlt": "^11.0",
"Apache-Solr": "8.11.1",
"configset": "ext_solr_11_5_0"
},
"ext-solrfal": {
}
}
}
}