forked from paysera/lib-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 987 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
{
"name": "paysera/lib-pagination",
"description": "Paginates Doctrine QueryBuilder using cursor based or offset based pagination",
"keywords": ["pagination", "paginator", "cursor", "offset", "limit", "page", "doctrine"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Paysera\\Pagination\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\Pagination\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.0|>=8.0",
"doctrine/orm": "^2.0",
"psr/log": "^1.0|^2.0",
"symfony/property-access": "^2.8|^3.0|^4.0|^5.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^9.0"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"phpunit": "phpunit",
"fix-cs": "php-cs-fixer fix",
"test-cs": "php-cs-fixer fix --dry-run -v",
"test": ["@phpunit", "@test-cs"]
}
}