forked from heimrichhannot/contao-form-autocomplete-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.53 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
{
"name": "heimrichhannot/contao-form-autocomplete-bundle",
"type": "contao-bundle",
"description": "This bundle offers functionality for adding the HTML5 attribute \"autocomplete\" to form fields in the Contao CMS.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^7.2||^8.0",
"contao/core-bundle": "^4.9",
"heimrichhannot/contao-utils-bundle": "^2.164",
"symfony/config": "^4.4||^5.4",
"symfony/dependency-injection": "^4.4||^5.4",
"symfony/http-kernel": "^4.4||^5.4"
},
"require-dev": {
"contao/test-case": "1.1.*",
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": ">=6.0 <6.5",
"phpunit/phpunit-mock-objects": "^4.0|^5.0",
"phpunit/php-token-stream": "^1.4|^2.0|^3.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message-factory": "^1.0.2",
"satooshi/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^3.2"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\FormAutocompleteBundle\\": "src/"
},
"classmap": [
"src/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\FormAutocompleteBundle\\Test\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\FormAutocompleteBundle\\ContaoManager\\Plugin",
"foxy": true
}
}