-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
64 lines (64 loc) · 2.11 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": "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": {
"ext-json": "*",
"php": "^7.3 || ^8.0",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-content-forms": "^1.3@dev",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"ezsystems/ezplatform-rest": "^1.0@dev",
"ezsystems/ezplatform-richtext": "^2.3@dev",
"guzzlehttp/guzzle": "~6.0",
"ramsey/uuid": "^3.9",
"symfony/framework-bundle": "^5.0",
"symfony/twig-bundle": "^5.0",
"symfony/webpack-encore-bundle": "^1.8",
"webmozart/assert": "^1.0"
},
"require-dev": {
"dg/bypass-finals": "^1.1",
"ezsystems/ezplatform-code-style": "^0.4",
"ezsystems/ezplatform-http-cache": "^2.3@dev",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Ibexa\\Personalization\\": "src/lib/",
"EzSystems\\EzRecommendationClientBundle\\": "src/bundle/",
"EzSystems\\EzRecommendationClient\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Personalization\\": "tests/lib/",
"EzSystems\\EzRecommendationClient\\Tests\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --config=.php_cs --show-progress=estimating",
"phpstan": "phpstan analyse -c phpstan.neon",
"check-cs": "php-cs-fixer fix -v --diff --config=.php_cs --dry-run --show-progress=estimating",
"test": "phpunit -vc phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
}
}