Files
search/composer.json
Boris Popovschi d3b8512907 New tests (#124)
* change license field to american english

Fields have to match composer's schema definition

* New test for UnitOfWork

* New test for UnitOfWork, PHP 5.3 BC FIX
2016-11-17 20:40:42 +00:00

43 lines
1.2 KiB
JSON

{
"name": "doctrine/search",
"description": "ElasticSearch and Solr entity mapping library",
"keywords": ["elasticsearch", "solr", "lucene", "search", "odm", "orm"],
"homepage": "https://github.com/doctrine/search",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Doctrine Search Community",
"homepage": "https://github.com/doctrine/search/graphs/contributors"
}
],
"require": {
"php": ">=5.3.2",
"doctrine/common": ">=2.3.0"
},
"suggest": {
"ruflin/Elastica": "Elastica version correlating to your ElasticSearch installation is required.",
"symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
},
"require-dev": {
"doctrine/orm": "~2.4",
"phpunit/phpunit": "~4.2",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-0": {
"Doctrine\\Search": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"Doctrine\\Tests\\Search": "tests/",
"Doctrine\\Tests\\Models": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"code-sniffer": "vendor/bin/phpcs --extensions=php --standard=psr2 lib tests"
}
}