-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 843 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
{
"name": "edgar/ez-uicontentsbytype-bundle",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"description": "eZ Platform Contents by type",
"authors": [
{
"name": "Emmanuel DROUET",
"email": "emmanuel.drouet@gmail.com"
}
],
"autoload": {
"psr-4": {
"Edgar\\EzUIContentsByTypeBundle\\": "src/bundle/",
"Edgar\\EzUIContentsByType\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": { "Edgar\\EzUIContentsByTypeBundle\\Tests\\": "src/bundle/Tests" }
},
"require": {
"php": ">=7.1",
"ezsystems/ezpublish-kernel": "^7.1",
"ezsystems/ezplatform-admin-ui": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.7.1",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
}
}