-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.82 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
53
54
55
56
57
{
"name": "fritzmg/contao-file-access",
"description": "Contao extension that allows file access restrictions for frontend users.",
"keywords": ["contao", "files", "access", "protected"],
"type": "contao-bundle",
"homepage": "https://github.com/fritzmg/contao-file-access",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Fritz Michael Gschwantner",
"homepage": "http://www.inspiredminds.at",
"email": "fmg@inspiredminds.at",
"role": "Developer"
}
],
"support": {
"email": "fmg@inspiredminds.at",
"issues": "https://github.com/fritzmg/contao-file-access/issues",
"source": "https://github.com/fritzmg/contao-file-access",
"forum": "https://community.contao.org/de"
},
"funding": [
{
"type":"github",
"url":"https://github.com/sponsors/fritzmg"
}
],
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13 || ^5.0",
"contao/image": "^1.2",
"symfony/config": "^5.2 || ^6.0",
"symfony/dependency-injection": "^5.2 || ^6.0",
"symfony/http-foundation": "^5.2 || ^6.0",
"symfony/http-kernel": "^5.2 || ^6.0",
"symfony/security-core": "^5.2 || ^6.0",
"webmozart/path-util": "^2.3",
"symfony/service-contracts": "^2.5 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"InspiredMinds\\ContaoFileAccessBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "InspiredMinds\\ContaoFileAccessBundle\\ContaoManagerPlugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": false
}
}
}