-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "ezsystems/repository-forms",
"description": "Use Symfony forms with eZ Platform repository objects",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Jérôme Vieilledent",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"ezsystems/ezplatform-admin-ui": "^2.0@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.0",
"ezsystems/ezplatform-code-style": "^0.1.0"
},
"autoload": {
"psr-4": {
"EzSystems\\RepositoryForms\\": "lib",
"EzSystems\\RepositoryFormsBundle\\": "bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev",
"dev-tmp_ci_branch": "3.0.x-dev"
}
},
"scripts": {
"fix": "@php bin/php-cs-fixer fix"
},
"config": {
"bin-dir": "bin"
}
}