forked from jeroenherczeg/solarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.26 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.0",
"symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^3.8 || ^6.2",
"phpunit/phpunit": "^6.5",
"php-coveralls/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "^1.4",
"zendframework/zendframework": "^3.0"
},
"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": {
"4.1.x-dev": "dev-master",
"dev-4.1.x": "dev-master",
"dev-4.0.x": "4.0.x-dev"
}
}
}