-
Notifications
You must be signed in to change notification settings - Fork 78
/
composer.json
35 lines (35 loc) · 1012 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": "pixassociates/sortable-behavior-bundle",
"type": "symfony-bundle",
"description": "Provides a way to sort your admin listing",
"keywords": ["sortable","admin","sonata"],
"homepage": "https://github.com/pix-digital/pixSortableBehaviorBundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas Ricci",
"email": "[email protected]"
}
],
"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": { "Pix\\SortableBehaviorBundle": "" }
},
"target-dir": "Pix/SortableBehaviorBundle",
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}