forked from thephpleague/fractal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.29 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
45
46
47
48
49
50
51
{
"name": "league/fractal",
"description": "Handle the output of complex data structures ready for API output.",
"keywords": [
"league",
"api",
"json",
"rest"
],
"homepage": "http://fractal.thephpleague.com/",
"license": "MIT",
"authors": [
{
"name": "Phil Sturgeon",
"email": "[email protected]",
"homepage": "http://philsturgeon.uk/",
"role": "Developer"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"illuminate/contracts": "~5.0",
"squizlabs/php_codesniffer": "~1.5",
"pagerfanta/pagerfanta": "~1.0.0",
"zendframework/zend-paginator":"~2.3"
},
"suggest": {
"illuminate/pagination": "The Illuminate Pagination component.",
"pagerfanta/pagerfanta": "Pagerfanta Paginator",
"zendframework/zend-paginator": "Zend Framework Paginator"
},
"autoload": {
"psr-4": {
"League\\Fractal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Fractal\\Test\\": "test"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.13-dev"
}
}
}