-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"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.1 || ^8.0",
"doctrine/orm": "^2.5 || ^3.0",
"psr/log": "^1.0 || ^2.0",
"symfony/property-access": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"symfony/cache": "^3.0 || ^4.0 || ^5.0 || ^6.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"]
}
}