summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 3f8c0bef2b2fcb372796827c7b667d1218976c22 (plain)
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
{
    "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": ">=5.3.2",
        "symfony/event-dispatcher": "~2.3|~3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "~3.7",
        "squizlabs/php_codesniffer": "~1.4",
        "zendframework/zendframework1": "~1.12",
        "satooshi/php-coveralls": "~1.0",
        "guzzlehttp/guzzle": "^3.8 || ^6.2"
    },
    "suggest": {
        "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
    },
    "extra": {
        "branch-alias": {
            "dev-develop": "3.3.x-dev"
        }
    },
    "autoload": {
        "psr-0": { "Solarium\\": "library/" }
    }
}