-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.03 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
{
"name": "pugx/filter-bundle",
"type": "symfony-bundle",
"description": "Utility for filtering/sorting with Symfony",
"keywords": ["Symfony", "form", "filter"],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"twig/twig": "^3.8"
},
"require-dev": {
"dg/bypass-finals": "^1.8",
"phpunit/phpunit": "^10.5"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"PUGX\\FilterBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PUGX\\FilterBundle\\Tests\\": "tests"
}
}
}