.gitignore
0 → 100644
+1
−0
.travis.yml
0 → 100644
+15
−0
composer.json
0 → 100644
+40
−0
| Original line number | Diff line number | Diff line |
|---|---|---|
{
|
||
"name": "iressources/elasticquent",
|
||
"type": "library",
|
||
"description": "Maps Laravel Eloquent models to Elasticsearch types.",
|
||
"keywords": [
|
||
"elasticsearch",
|
||
"eloquent",
|
||
"laravel"
|
||
],
|
||
"homepage": "https://git.iressources.com/CherryPick/elasticquent",
|
||
"license": "MIT",
|
||
"authors": [
|
||
{
|
||
"name": "Adam Fairholm",
|
||
"email": "adam.fairholm@gmail.com",
|
||
"homepage": "http://adamfairholm.com"
|
||
}
|
||
],
|
||
"require": {
|
||
"php": ">=5.4.0",
|
||
"illuminate/database": "~4.2|^5|^6|^7",
|
||
"illuminate/config": "~4.2|^5|^6|^7",
|
||
"nesbot/carbon": "~1.0|~2",
|
||
"elasticsearch/elasticsearch": "~7.8"
|
||
},
|
||
"require-dev": {
|
||
"phpunit/phpunit": "~4.2|~5.0|~8.0",
|
||
"mockery/mockery": "^0.9.4|^1.0"
|
||
},
|
||
"autoload": {
|
||
"psr-4": {
|
||
"Elasticquent\\": "src/"
|
||
}
|
||
},
|
||
"extra": {
|
||
"branch-alias": {
|
||
"dev-master": "1.0-dev"
|
||
}
|
||
}
|
||
} |
license.txt
0 → 100644
+21
−0
phpunit.xml
0 → 100644
+18
−0
Loading