forked from mxp100/plastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.67 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mxp100/plastic",
"license": "MIT",
"description": "Plastic is an Elasticsearch ODM and mapper for Laravel. It renders the developer experience more enjoyable while using Elasticsearch by providing a fluent syntax for mapping , querying and storing eloquent models.",
"keywords": ["elasticsearch","elastic","laravel","eloquent","model","ODM","mapper"],
"homepage": "https://github.com/sleimanx2/plastic",
"authors": [
{
"name": "Sleiman Sleiman",
"email": "sleiman@outlook.com",
"role": "Developer"
},
{
"name": "Yuriy Potemkin",
"email": "ysoft2000@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"elasticsearch/elasticsearch": "5.x-dev as v5.5.1",
"ongr/elasticsearch-dsl": "5.*",
"illuminate/container": ">=5.2",
"illuminate/contracts": ">=5.2",
"illuminate/console": ">=5.2",
"illuminate/pagination": ">=5.2",
"illuminate/support": ">=5.2",
"illuminate/database": ">=5.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4",
"phpunit/php-code-coverage": "^2.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/packbackbooks/elasticsearch-php"
},
{
"type": "vcs",
"url": "https://github.com/packbackbooks/ElasticsearchDSL"
}
],
"autoload": {
"psr-4": {
"Sleimanx2\\Plastic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sleimanx2\\Plastic\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"Sleimanx2\\Plastic\\PlasticServiceProvider"
]
}
}
}