forked from TYPO3-Solr/ext-solrfluidgrouping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 3.21 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
{
"name": "apache-solr-for-typo3/solrfluidgrouping",
"type": "typo3-cms-extension",
"description": "Apache Solr for TYPO3",
"license": "GPL-2.0+",
"keywords": ["typo3", "TYPO3 CMS", "solr", "search"],
"homepage": "http://www.typo3-solr.com",
"authors": [
{
"name": "dkd Internet Services GmbH",
"email": "[email protected]",
"homepage": "http://www.dkd.de"
},
{
"name": "Timo Hund",
"email": "[email protected]"
},
{
"name": "Frans Saris",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TYPO3-Solr/ext-solr/issues",
"forum": "http://forum.typo3.org/index.php/f/53/"
},
"require": {
"php": "^7.4.0 || ^8.0",
"typo3/cms-core": "^11.5.4",
"apache-solr-for-typo3/solr": "^11.5.0 <11.6.0"
},
"require-dev": {
"phpspec/prophecy-phpunit":"*",
"sclable/xml-lint": "*",
"friendsofphp/php-cs-fixer": ">= 3.0.0",
"typo3/testing-framework": "^6.12",
"typo3/coding-standards": ">=0.5.0"
},
"autoload": {
"psr-4": {
"ApacheSolrForTypo3\\Solrfluidgrouping\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheSolrForTypo3\\Solrfluidgrouping\\Tests\\": "Tests/",
"ApacheSolrForTypo3\\Solr\\Tests\\": ".Build/Web/typo3conf/ext/solr/Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": true,
"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/solrfluidgrouping ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/solrfluidgrouping"
],
"tests:restore-git": "echo \"Restore composer.json to initial state:\" && git checkout composer.json && rm composer.lock",
"tests:env": [
"if [ \"${TYPO3_VERSION#*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:-*} apache-solr-for-typo3/solr:$($COMPOSER_BINARY config extra.TYPO3-Solr.CI.matrix.ext-solr)",
"@tests:restore-git"
],
"tests:unit": [
"phpunit --colors --coverage-text --coverage-clover=coverage.unit.clover -c Build/Test/UnitTests.xml --bootstrap=.Build/Web/typo3conf/ext/solr/Build/Test/UnitTestsBootstrap.php"
],
"tests:integration": [
"phpunit --colors --coverage-text --coverage-clover=coverage.unit.clover -c Build/Test/IntegrationTests.xml --bootstrap=.Build/Web/typo3conf/ext/solr/Build/Test/IntegrationTestsBootstrap.php"
],
"t3:standards:fix": [
"php-cs-fixer fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "11.0.x-dev"
},
"typo3/cms": {
"extension-key": "solrfluidgrouping",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"TYPO3-Solr": {
"CI": {
"matrix": {
"ext-solr": "dev-release-11.5.x"
}
}
}
}
}