-
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) · 838 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 838 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": "danbovey/laravel-linkheader-paginator",
"description": "Laravel Paginator that moves pagination info to the HTTP LinkHeader",
"keywords": [
"laravel",
"paginator",
"pagination",
"linkheader"
],
"homepage": "https://github.com/danbovey/laravel-linkheader-paginator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dan Bovey",
"email": "dan@danbovey.uk"
}
],
"autoload": {
"psr-4": {
"DanBovey\\LinkHeaderPaginator\\": "src/"
}
},
"require": {},
"require-dev": {
"illuminate/http": "^5.3",
"illuminate/pagination": "^5.3",
"phpish/link_header": "dev-master",
"phpunit/phpunit": "^5.6",
"illuminate/routing": "^5.3"
}
}