forked from ezsystems/repository-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.35 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
{
"name": "ezsystems/repository-forms",
"description": "Use Symfony forms with eZ Platform repository objects",
"license": "GPL-2.0",
"authors": [
{
"name": "Jérôme Vieilledent",
"email": "[email protected]"
}
],
"require": {
"php": "~5.6|~7.0",
"ezsystems/ezpublish-kernel": "^6.7",
"symfony/symfony": "^2.8 | ^3.0",
"jms/translation-bundle": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"matthiasnoback/symfony-dependency-injection-test": "^0.7",
"behat/behat": "^3.0"
},
"conflict": {
"symfony/symfony": "2.7.11"
},
"autoload": {
"psr-4": {
"EzSystems\\RepositoryFormsBundle\\": "bundle",
"EzSystems\\RepositoryForms\\": "lib",
"EzSystems\\RepositoryForms\\Tests\\": "tests/RepositoryForms",
"EzSystems\\RepositoryFormsBundle\\Tests\\": "tests/RepositoryFormsBundle",
"EzSystems\\RepositoryForms\\Features\\": "features"
}
},
"extra": {
"_ezplatform_branch_for_behat_tests_comment_": "ezplatform branch to use to run Behat tests",
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-master": "1.7.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}