-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 766 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 766 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
{
"authors": [
{
"name": "Dennis Meckel"
}
],
"autoload": {
"psr-4": {
"Rayne\\Pagination\\": "src"
}
},
"description": "Pagination library without dependencies.",
"keywords": ["filter-pagination", "pagination", "paginator", "search-pagination"],
"license": "MIT",
"name": "rayne/pagination",
"require": {
"php": ">=5.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7",
"phpunit/phpunit": "^6.0"
},
"support": {
"issues": "http://github.com/rayne/pagination/issues",
"source": "http://github.com/rayne/pagination"
},
"scripts": {
"format": "php-cs-fixer fix",
"test": "phpunit"
}
}