forked from jolicode/elastically
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.44 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
{
"name": "jolicode/elastically",
"description": "Opinionated Elastica based framework to bootstrap PHP and Elasticsearch implementations.",
"keywords": [
"Elasticsearch",
"Elastica",
"Symfony",
"Search"
],
"license": "MIT",
"authors": [
{
"name": "Damien Alexandre",
"homepage": "https://jolicode.com/"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"ruflin/elastica": "^7.0",
"symfony/property-access": "^3.4|^4.0|^5.0",
"symfony/property-info": "^3.4|^4.0|^5.0",
"symfony/serializer": "^3.4|^4.0|^5.0",
"symfony/yaml": "^3.4|^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"jane-php/json-schema": "^6.0",
"jane-php/json-schema-runtime": "^6.0",
"symfony/browser-kit": "^4.3|^5.0",
"symfony/framework-bundle": "^4.3|^5.0",
"symfony/http-client": "^4.3|^5.0",
"symfony/http-foundation": "^4.3|^5.0",
"symfony/messenger": "^4.4|^5.0",
"symfony/phpunit-bridge": "^5.0"
},
"autoload": {
"psr-4": {
"JoliCode\\Elastically\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"JoliCode\\Elastically\\Tests\\": "./tests"
}
},
"config": {
"sort-packages": true
}
}