-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.71 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "s-damian/laravel-man-pagination",
"description": "Laravel Pagination library",
"type": "library",
"keywords": ["laravel", "pagination", "paginator", "php"],
"license": "MIT",
"authors": [
{
"name": "Stephen Damian",
"email": "contact@damian-freelance.fr",
"homepage": "https://github.com/s-damian"
}
],
"support": {
"email": "contact@damian-freelance.fr",
"issues": "https://github.com/s-damian/laravel-man-pagination/issues",
"source": "https://github.com/s-damian/laravel-man-pagination",
"docs": "https://github.com/s-damian/laravel-man-pagination/blob/main/README.md"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"laravel/pint": "^1.0",
"phpunit/phpunit": "9.5.*",
"orchestra/testbench": "^6",
"phpstan/phpstan": "^1.11"
},
"autoload": {
"psr-4" : {
"SDamian\\LaravelManPagination\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SDamian\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SDamian\\LaravelManPagination\\ManPaginationServiceProvider"
]
}
},
"scripts": {
"test": "php8.4 ./vendor/phpunit/phpunit/phpunit",
"test-f": "php8.4 ./vendor/phpunit/phpunit/phpunit --filter",
"phpstan": "php8.3 ./vendor/bin/phpstan analyse -c phpstan.neon",
"pint": "php8.4 ./vendor/bin/pint",
"pint-t": "php8.4 ./vendor/bin/pint --test"
},
"minimum-stability": "dev",
"prefer-stable": true
}