forked from ezsystems/ezrecommendation-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.52 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
{
"name": "ezsystems/ezrecommendation-client",
"description": "HTTP Communication Client between Recommendation engine and Ibexa DXP",
"license": "(GPL-2.0-only or proprietary)",
"type": "ibexa-bundle",
"authors": [
{
"name": "Ibexa AS",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"ezsystems/ezplatform-kernel": "^2.0@dev",
"ezsystems/ezplatform-rest": "^2.0@dev",
"ezsystems/ezplatform-richtext": "^3.0@dev",
"ezsystems/ezplatform-content-forms": "^2.0@dev",
"ezsystems/doctrine-dbal-schema": "^2.0@dev",
"symfony/framework-bundle": "^5.0",
"symfony/twig-bundle": "^5.0",
"guzzlehttp/guzzle": "~6.0",
"webmozart/assert": "^1.0",
"ramsey/uuid": "^3.9"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"ezsystems/ezplatform-code-style": "^0.4",
"ezsystems/ezplatform-http-cache": "^3.0@dev",
"dg/bypass-finals": "^1.1"
},
"autoload": {
"psr-4": {
"EzSystems\\EzRecommendationClientBundle\\": "src/bundle/",
"EzSystems\\EzRecommendationClient\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzRecommendationClient\\Tests\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}