-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
35 lines (35 loc) · 895 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
{
"name": "iverberk/larasearch",
"description": "Elasticsearch enabled Eloquent models",
"keywords": ["search", "elasticsearch", "eloquent"],
"license": "MIT",
"authors": [
{
"name": "Ivo Verberk"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0",
"illuminate/database": "~5.0",
"illuminate/console": "~5.0",
"illuminate/config": "~5.0",
"doctrine/dbal": "2.5.1",
"elasticsearch/elasticsearch": "~1.0",
"nikic/php-parser": "*"
},
"autoload": {
"psr-0": {
"Iverberk\\Larasearch": "src/"
},
"classmap": [
"tests/Support/Stubs",
"tests/Support"
]
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "4.4.*",
"codeception/aspect-mock": "*"
}
}