-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.1 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
{
"name": "hofff/contao-restrict-get-parameters",
"description": "Restrict allowed get parameters",
"license": "MIT",
"type": "contao-bundle",
"authors": [
{
"name": "David Molineus",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"doctrine/coding-standard": "^12.0",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\RestrictGetParameters\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\RestrictGetParameters\\ContaoManager\\Plugin"
}
}