-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
62 lines (62 loc) · 1.88 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
{
"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": ">=8.0",
"ext-json": "*",
"nyholm/psr7": "^1.8",
"phpdocumentor/reflection-docblock": "^4.4|^5.0",
"ruflin/elastica": "^8.0",
"symfony/deprecation-contracts": "^2.4 || ^3.0",
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
"symfony/property-info": "^5.4 || ^6.0 || ^7.0",
"symfony/psr-http-message-bridge": "^2.3 || ^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17.0",
"jane-php/json-schema": "^7.4",
"jane-php/json-schema-runtime": "^7.4",
"phpstan/phpstan": "^1.9",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4.17 || ^6.0 || ^7.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/messenger": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^6.2.3 || ^7.0"
},
"conflict": {
"nikic/php-parser": "<4.7"
},
"autoload": {
"psr-4": {
"JoliCode\\Elastically\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"JoliCode\\Elastically\\Tests\\": "./tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"php-http/discovery": true
}
}
}