-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
64 lines (64 loc) · 1.9 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
{
"name": "gally/gally-standard",
"description": "The Open Source E-Commerce Searchandising Suite",
"type": "symfony-bundle",
"keywords": ["REST", "GraphQL", "API", "JSON-LD", "Elasticsearch", "JSONAPI", "OpenAPI", "HAL", "Swagger", "E-commerce"],
"homepage": "https://elasticsuite.io",
"license": "OSL-3.0",
"authors": [
{
"name": "The Elasticsuite Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"api-platform/core": "^3.3.0",
"cweagans/composer-patches": "^1.7",
"opensearch-project/opensearch-php": "^2.1",
"lexik/jwt-authentication-bundle": "^2.14",
"nelmio/cors-bundle": "^2.2",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/intl": "6.4.*",
"symfony/proxy-manager-bridge": "6.4.*",
"symfony/translation": "6.4.*",
"symfony/uid": "6.4.*",
"webonyx/graphql-php": "^15.12",
"beberlei/doctrineextensions": "^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.4.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-doctrine": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "6.0.*"
},
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
"Gally\\": "src/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true,
"cweagans/composer-patches": true
}
},
"extra": {
"symfony": {
"require": "^6.1"
}
}
}