-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.37 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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": "saloonphp/pagination-plugin",
"description": "Official Pagination Plugin For Saloon v3",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sam Carré",
"email": "29132017+Sammyjo20@users.noreply.github.com",
"role": "Developer"
}
],
"homepage": "https://github.com/saloonphp/pagination-plugin",
"require": {
"php": "^8.2",
"saloonphp/saloon": "^3.0 || ^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"pestphp/pest": "^3.0 || ^4.0",
"phpstan/phpstan": "^1.9",
"illuminate/collections": "^11.0 || ^12.0",
"spatie/invade": "^2.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Saloon\\PaginationPlugin\\": "src/",
"Saloon\\PaginationPlugin\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"suggest": {
"illuminate/collections": "Used to provide LazyCollections via the collect() method on paginators."
},
"scripts": {
"fix-code": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"pstan": [
"./vendor/bin/phpstan analyse"
],
"test": [
"./vendor/bin/pest"
]
}
}