-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
43 lines (43 loc) · 1.22 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/autocompleter-bundle",
"type": "symfony-bundle",
"description": "Add an autocomplete type to forms",
"keywords": ["Symfony", "form", "field"],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "garakkio@gmail.com"
}
],
"require": {
"php": "^8.1",
"doctrine/persistence": "^3.3",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"spiriitlabs/form-filter-bundle": "^11.0"
},
"suggest": {
"spiriitlabs/form-filter-bundle" : "To use autocomplete on a filter."
},
"autoload": {
"psr-4": { "PUGX\\AutocompleterBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "PUGX\\AutocompleterBundle\\Tests\\": "tests" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}