Skip to content
Snippets Groups Projects
composer.json 793 B
Newer Older
{
    "name": "ongr/elasticsearch-dsl",
    "description": "Elasticsearch DSL library",
    "type": "library",
    "homepage": "http://ongr.io",
    "license": "MIT",
    "authors": [
        {
            "name": "ONGR team",
            "homepage": "http://www.ongr.io"
        }
    ],
    "require": {
        "php": ">=5.4",
    },
    "require-dev": {
        "phpunit/phpunit": "~4.4",
    },
    "autoload": {
            "ONGR\\ElasticsearchDSL\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ONGR\\ElasticsearchDSL\\Tests\\": "tests/"
        }