-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (39 loc) · 1.11 KB
/
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
39
40
41
42
43
44
{
"name": "indatus/ranger",
"description": "This package adds some power to your api rest server by allowing you to specify joins and eager loaded associations using http query parameters",
"type": "library",
"homepage": "http://indatus.com/",
"license": "MIT",
"authors": [
{
"name": "Brian Webb",
"email": "[email protected]",
"name": "Charles Griffin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.1.*",
"illuminate/container": "4.1.*@dev",
"illuminate/database": "4.1.*@dev",
"illuminate/view": "4.1.*@dev",
"illuminate/routing": "4.1.*@dev"
},
"require-dev": {
"mockery/mockery": "dev-master@dev",
"phpunit/phpunit": "3.7.*@dev"
},
"autoload": {
"psr-0": {
"Indatus\\Ranger": "src/"
},
"classmap": [
"tests"
],
"files" : [
"src/Indatus/Ranger/Support/helpers.php"
]
},
"minimum-stability": "dev"
}