-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.12 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
{
"name": "kairios/rest-pagination",
"description": "Pagination pour les api rest.",
"type": "library",
"license": "proprietary",
"require": {
"php": "^7.4",
"doctrine/orm": "^2.10",
"knplabs/knp-paginator-bundle": "^5.4",
"symfony/dependency-injection": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/http-kernel": "^5.3",
"symfony/routing": "^5.3",
"symfony/serializer": "^5.3"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"RestPaginateur\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RestPaginateur\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.3.*"
}
},
"require-dev": {
"atoum/atoum": "^4.0",
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "5.3.*"
}
}