-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
39 lines (39 loc) · 947 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "hammerstone/fast-paginate",
"description": "Fast paginate for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aaron Francis",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^8.37|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^6|^7|^8.0|^9.0",
"mockery/mockery": "^1.3.3",
"phpunit/phpunit": ">=8.5.23|^9",
"laravel/scout": "^9.4|^10.8"
},
"autoload": {
"psr-4": {
"Hammerstone\\FastPaginate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hammerstone\\FastPaginate\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Hammerstone\\FastPaginate\\FastPaginateProvider"
]
}
}
}