forked from jasongrimes/php-paginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (26 loc) · 830 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
{
"name": "jasongrimes/paginator",
"type": "library",
"description": "A lightweight PHP paginator, for generating pagination controls in the style of Stack Overflow and Flickr. The 'first' and 'last' page links are shown inline as page numbers, and excess page numbers are replaced by ellipses.",
"keywords": ["paginator", "pagination", "pager"],
"homepage": "http://github.com/jasongrimes/php-paginator",
"license": "MIT",
"authors": [
{
"name": "Jason Grimes",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.2"
},
"autoload": {
"psr-0": {"JasonGrimes": "src/"}
},
"autoload-dev": {
"psr-0": {"JasonGrimes\\Tests": "tests/"}
}
}