forked from solariumphp/solarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.24 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
{
"name": "solarium/solarium",
"type": "library",
"description": "PHP Solr client",
"keywords": ["solr", "search", "php"],
"homepage": "http://www.solarium-project.org",
"license": "BSD-3-Clause",
"authors": [
{
"name": "See GitHub contributors",
"homepage": "https://github.com/basdenooijer/solarium/contributors"
}
],
"require": {
"php": "^7.1",
"symfony/event-dispatcher": "^3.1 || ^4.0",
"symfony/cache": "^3.1 || ^4.0",
"ext-json": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^3.8 || ^6.2",
"phpunit/phpunit": "^8.0",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"zendframework/zend-http": "^2.8"
},
"suggest": {
"minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Solarium\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Solarium\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}