-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 799 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 799 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
31
32
{
"name": "ip/sorter-bundle",
"description": "Adds sorting functionality to your entities",
"keywords": ["sort","symfony2"],
"type": "symfony-bundle",
"homepage": "https://github.com/daniellehrner/sorterbundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Lehrner",
"email": "dl@inter-punkt.ch"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/daniellehrner/sorterbundle"
}
],
"archive": {
"exclude": ["/Tests"]
},
"require": {
"php": ">=5.4",
"symfony/framework-bundle": "~2.4|~3.0",
"doctrine/orm": ">=2.4"
},
"autoload": {
"psr-4": { "Ip\\SorterBundle\\": "" }
},
"require-dev": {
"phpunit/phpunit": "^5.6 "
}
}