forked from elasticquent/Elasticquent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 867 Bytes
/
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
{
"name": "elasticquent/elasticquent",
"type": "library",
"description": "Maps Laravel Eloquent models to Elasticsearch types.",
"keywords": [
"elasticsearch",
"eloquent",
"laravel"
],
"homepage": "https://github.com/elasticquent/Elasticquent",
"license": "MIT",
"authors": [
{
"name": "Adam Fairholm",
"email": "[email protected]",
"homepage": "http://adamfairholm.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/database": "~4.2|^5",
"illuminate/config": "~4.2|^5",
"nesbot/carbon": "~1.0",
"elasticsearch/elasticsearch": ">1.0 <2.1"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Elasticquent\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}