-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "ezsystems/recommendation-bundle",
"description": "Integration of the YooChoose recommender engine into eZ Publish Platform",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ Systems",
"email": "[email protected]"
}
],
"require": {
"ezsystems/ezpublish-kernel": "~5.1 || ^6.7 || ^7.0",
"guzzlehttp/guzzle": "~5.0|~6.0",
"components/handlebars.js": "~3.0.0",
"symfony/symfony": "^2.7.7 || ^3.3"
},
"require-dev": {
"phpunit/phpunit": "~4.7 || ^5.7",
"friendsofphp/php-cs-fixer": "~2.7.1"
},
"autoload": {
"psr-4": {
"EzSystems\\RecommendationBundle\\": ""
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}