-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
{
"name": "mariojrrc/laminas-mongodb-paginator-adapter",
"description": "MongoDB Adapter to be used with Laminas Paginator",
"keywords": ["PHP","Laminas","MongoDB","laminas-paginator","paginator"],
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/mariojrrc/laminas-mongodb-paginator-adapter",
"authors": [
{
"name": "Mario Costa",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 | 8.*",
"ext-mongodb": "*",
"mongodb/mongodb": "^1.6.0",
"laminas/laminas-paginator": "^2.8"
},
"require-dev": {
"dg/bypass-finals": "^1.2",
"doctrine/coding-standard": "^8.0",
"phpspec/prophecy-phpunit": "^1.1",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mariojrrc\\Laminas\\Paginator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MariojrrcTest\\Laminas\\Paginator\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html coverage.html"
}
}