forked from tetranz/select2entity-bundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 917 Bytes
/
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
{
"name": "tetranz/select2entity-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle that integrates Select2 as a drop-in replacement for a standard entity field on a Symfony form.",
"keywords": [
"symfony",
"select2",
"typeahead",
"autocomplete"
],
"license": "MIT",
"authors": [
{
"name": "Ross Keatinge",
"email": "tetranz@gmail.com"
}
],
"require": {
"php": "^8.3",
"doctrine/orm": "^3.3",
"twig/twig": "^3.15",
"symfony/property-access": "7.2.*",
"symfony/dependency-injection": "7.2.*",
"symfony/http-kernel": "7.2.*",
"symfony/form": "7.2.*",
"symfony/config": "7.2.*",
"symfony/routing": "7.2.*"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Tetranz\\Select2EntityBundle\\": ""
}
},
"extra": {
"branch-alias": {
}
}
}