forked from fsi-open/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1006 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
34
35
36
37
38
{
"name": "fsi/datagrid",
"type": "library",
"description": "FSi DataGrid Component",
"keywords": ["fsi", "component", "datagrid"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"symfony/event-dispatcher" : "2.1.*",
"symfony/property-access": "2.2.*@dev",
"fsi/reflection" : "0.9.*"
},
"require-dev": {
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/common": ">=2.2.3,<2.4-dev",
"gedmo/doctrine-extensions": "dev-master",
"symfony/form" : "2.1.*",
"symfony/routing" : "2.1.*",
"symfony/http-foundation": "2.1.*",
"symfony/dependency-injection" : "2.1.*"
},
"autoload": {
"psr-0": {
"FSi\\Component\\DataGrid": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}