-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.07 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": "ns/filtered-pagination-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a paginated filter handler",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Nathanael d. Noblet",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/form": "^6.0|^7.0",
"symfony/event-dispatcher": "^6.0|^7.0",
"symfony/http-foundation": "^6.0|^7.0",
"knplabs/knp-paginator-bundle": "^5.0|^6.0",
"spiriitlabs/form-filter-bundle": "^11.0"
},
"require-dev": {
"liip/rmt": "^1.6",
"phpunit/phpunit": "^7.0||^9.5"
},
"autoload": {
"psr-4": { "NS\\FilteredPaginationBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "NS\\FilteredPaginationBundle\\Tests\\": "Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}