-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.55 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
{
"name": "s-damian/damian-pagination-php",
"description": "PHP library of simple Pagination",
"type": "library",
"keywords": ["php", "pagination", "paginator"],
"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/damian-pagination-php/issues",
"source": "https://github.com/s-damian/damian-pagination-php",
"docs": "https://github.com/s-damian/damian-pagination-php/blob/main/README.md"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4" : {
"DamianPaginationPhp\\": "src/DamianPaginationPhp/"
}
},
"scripts": {
"test": "php8.4 ./vendor/phpunit/phpunit/phpunit",
"test-f": "php8.4 ./vendor/phpunit/phpunit/phpunit --filter",
"phpstan": "php8.3 ./vendor/bin/phpstan --configuration='tools/phpstan/phpstan.neon'",
"fix-all": "php8.2 ./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php",
"fix-all-dry": "php8.2 ./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php -vv --dry-run --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}