-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 931 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": "lampager/lampager-doctrine2",
"description": "Rapid pagination for Doctrine 2",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mpyw",
"email": "ryosuke_i_628@yahoo.co.jp"
}
],
"keywords": ["symfony", "doctrine", "pagination", "paginator", "offset", "limit"],
"autoload": {
"psr-4": {
"Lampager\\Doctrine2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lampager\\Doctrine2\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"lampager/lampager": "^0.4",
"doctrine/orm": "^2.4.5"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": ">=5.7",
"nilportugues/sql-query-formatter": "^1.2.2",
"doctrine/cache": "^1.11"
},
"minimum-stability": "dev",
"prefer-stable": true
}