-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.79 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
52
{
"name": "zenstruck/collection",
"description": "Helpers for iterating/paginating/filtering collections (with Doctrine ORM/DBAL implementations and batch processing utilities).",
"homepage": "https://github.com/zenstruck/collection",
"type": "library",
"license": "MIT",
"keywords": ["collection", "iterate", "paginate", "pager", "doctrine", "orm", "dbal", "batch"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"composer-runtime-api": "^2.0",
"doctrine/collections": "^2.1",
"doctrine/dbal": "^3.0|^4.0",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.15|^3.0",
"pagerfanta/pagerfanta": "^1.0|^2.0|^3.0|^4.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.21",
"symfony/expression-language": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.3|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"zenstruck/foundry": "^1.38.3",
"zenstruck/uri": "^2.3"
},
"suggest": {
"doctrine/orm": "To use ORM implementation and batch utilities (>=2.15).",
"doctrine/dbal": "To use DBAL implementation (>=3.0).",
"doctrine/collections": "To use CollectionDecorator.",
"pagerfanta/pagerfanta": "To use CollectionAdapter."
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": ["src/"] },
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Collection\\Tests\\": ["tests/"] }
},
"minimum-stability": "dev",
"prefer-stable": true
}