-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "somework/offset-page-logic",
"description": "Utility functions to convert offset/limit requests into page/page-size arguments",
"keywords": [
"pagination",
"offset",
"limit",
"page",
"converter"
],
"homepage": "https://github.com/somework/offset-page-logic",
"license": "MIT",
"authors": [
{
"name": "Pinchuk Igor",
"email": "i.pinchuk.work@gmail.com"
}
],
"autoload": {
"psr-4": {
"SomeWork\\OffsetPage\\Logic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SomeWork\\OffsetPage\\Logic\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.91"
},
"scripts": {
"test": "vendor/bin/phpunit",
"stan": "vendor/bin/phpstan analyse -c phpstan.neon.dist",
"cs-check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php"
}
}