forked from sampart/WhiteOctoberPagerfantaBundle
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
68 lines (68 loc) · 2.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "babdev/pagerfanta-bundle",
"type": "symfony-bundle",
"description": "Bundle integrating Pagerfanta with Symfony",
"keywords": ["pagerfanta", "pagination", "symfony"],
"license": "MIT",
"require": {
"php": "^8.1",
"pagerfanta/core": "^3.7 || ^4.0",
"psr/container": "^1.0 || ^2.0",
"symfony/config": "^5.4 || ^6.4 || ^7.1",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.1",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.1",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.1",
"symfony/property-access": "^5.4 || ^6.4 || ^7.1",
"symfony/routing": "^5.4 || ^6.4 || ^7.1"
},
"require-dev": {
"jms/serializer": "^3.18",
"jms/serializer-bundle": "^4.2 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"pagerfanta/twig": "^3.7 || ^4.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "1.12.7",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-symfony": "1.4.11",
"phpunit/phpunit": "9.6.21",
"symfony/phpunit-bridge": "^5.4 || ^6.4 || ^7.1",
"symfony/serializer": "^5.4 || ^6.4 || ^7.1",
"symfony/twig-bridge": "^5.4 || ^6.4 || ^7.1",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.1",
"symfony/translation": "^5.4 || ^6.4 || ^7.1",
"twig/twig": "^2.13 || ^3.0"
},
"conflict": {
"jms/serializer": "<3.18",
"jms/serializer-bundle": "<4.2",
"pagerfanta/twig": "<3.7",
"symfony/serializer": "<5.4 || >=6.0,<6.4 || >=7.0,<7.1",
"symfony/translation": "<5.4 || >=6.0,<6.4 || >=7.0,<7.1",
"symfony/twig-bridge": "<5.4 || >=6.0,<6.4 || >=7.0,<7.1",
"symfony/twig-bundle": "<5.4 || >=6.0,<6.4 || >=7.0,<7.1",
"twig/twig": "<2.13",
"white-october/pagerfanta-bundle": "*"
},
"suggest": {
"jms/serializer-bundle": "To use the Pagerfanta class with the JMS Serializer",
"symfony/serializer": "To use the Pagerfanta class with the Symfony Serializer",
"symfony/translation": "To use the Twig templates with translation support",
"twig/twig": "To integrate Pagerfanta with Twig through extensions"
},
"autoload": {
"psr-4": {
"BabDev\\PagerfantaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabDev\\PagerfantaBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev"
}