-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.17 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
{
"name": "apache-solr-for-typo3/php-solr-explain",
"description": "PHP explain library for apache solr",
"version": "3.0.0",
"license": "MIT",
"authors": [
{
"name": "Timo Hund",
"email": "[email protected]"
},
{
"name": "Michael Klapper",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"ApacheSolrForTypo3\\SolrExplain\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheSolrForTypo3\\SolrExplain\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts-descriptions": {
"build:phar": "Builds php-solr-explain.phar file from this library.",
"tests:setup": "Installs composer dependencies, requiered for tests.",
"tests:unit": "Runs unit tests"
},
"scripts": {
"build:phar": [
"./Build/phar.sh"
],
"tests:setup": [
"@composer install"
],
"tests:unit": [
"phpunit --config Build/Test/phpunit.xml --colors"
]
}
}