-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 792 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 792 Bytes
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
{
"name": "yavin/symfony-form-tree",
"description": "create select field with indentation for tree structure",
"license": "MIT",
"authors": [
{"name": "Yavin", "email": "yavin.yavin@gmail.com"}
],
"require": {
"php": ">=5.5.9",
"symfony/form": "~3.0",
"symfony/options-resolver": "~3.0",
"symfony/property-access": "~3.0",
"doctrine/orm": "~2.0",
"doctrine/common": "~2.0",
"gedmo/doctrine-extensions": "~2.1",
"symfony/doctrine-bridge": "~3.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "~4.0"
},
"autoload":{
"psr-4":{
"Yavin\\Symfony\\Form\\Type\\": "src"
}
},
"config": {
"bin-dir": "bin"
}
}