-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (35 loc) · 999 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
{
"name": "aliocza/sortable-ui-bundle",
"type": "symfony-bundle",
"description": "Provides a way to sort your admin listing",
"keywords": ["sortable","admin","sonata", "drag"],
"homepage": "https://github.com/aliocza/SortableUiBundle",
"license": "MIT",
"authors": [
{
"name": "Aliocha Mazurkiewicz",
"email": "contact@aliocha.be"
}
],
"require": {
"php": ">=5.3.0",
"symfony/framework-bundle": ">=2.1",
"symfony/form": ">=2.1"
},
"require-dev": {
"gedmo/doctrine-extensions": ">=2.2"
},
"suggest": {
"sonata-project/admin-bundle": "Can be easily integrated with Sonata Admin bundle",
"stof/doctrine-extensions-bundle": "1.1.*@dev"
},
"autoload": {
"psr-0": { "Aliocza\\SortableUiBundle": "" }
},
"target-dir": "Aliocza/SortableUiBundle",
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}