forked from andsalves/doctrine-elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·32 lines (32 loc) · 1.08 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
{
"name": "andsalves/doctrine-elastic",
"type": "library",
"description": "Elasticsearch Doctrine Adaptation",
"keywords": ["elasticsearch", "doctrine", "elastic", "search", "database", "adaptation", "orm", "entity", "engine", "best", "library"],
"homepage": "https://packagist.org/packages/andsalves/doctrine-elastic",
"license": "MIT",
"authors": [
{"name": "Anderson Alves Nunes de Freitas", "email": "[email protected]"}
],
"minimum-stability": "dev",
"require": {
"doctrine/orm": "^2.5",
"satooshi/php-coveralls": "~1.0.1@stable"
},
"require-dev": {
"phpunit/phpunit": "~5.7.1"
},
"autoload": {
"psr-4": {
"DoctrineElastic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DoctrineElastic\\Tests\\": "tests/DoctrineElastic/Tests"
}
},
"archive": {
"exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp", "*coveralls.yml"]
}
}