-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "ezsystems/ezplatform-multi-file-upload",
"description": "Multi File Upload for eZ Platform",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ Systems",
"email": "[email protected]"
}
],
"license": "TTL-2.0",
"autoload": {
"psr-4": {
"EzSystems\\MultiFileUpload\\": "lib/",
"EzSystems\\MultiFileUploadBundle\\": "bundle/",
"EzSystems\\Tests\\MultiFileUpload\\": "tests/lib/",
"EzSystems\\Tests\\MultiFileUploadBundle\\": "tests/bundle/"
}
},
"require": {
"ezsystems/platform-ui-bundle": "^1.8",
"ezsystems/platform-ui-assets-bundle": "^3.2",
"ezsystems/ezpublish-kernel": "^6.8"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"friendsofphp/php-cs-fixer": "~2.7.1"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}