-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "alpdesk/alpdesk-core",
"description": "Alpdesk-Core for Contao",
"keywords": [
"contao",
"alpdesk"
],
"type": "contao-bundle",
"homepage": "https://github.com/xprojects-de/alpdesk-core",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-sodium": "*",
"ext-curl": "*",
"contao/core-bundle": "^5.3",
"tecnickcom/tcpdf": "^6.4",
"lcobucci/jwt": "^5.3",
"symfony/security-bundle": "^6.4",
"symfony/security-core": "^6.4",
"symfony/security-http": "^6.4",
"symfony/security-csrf": "^6.4",
"symfony/process": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/finder": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/password-hasher": "^6.4",
"symfony/config": "^6.4",
"symfony/http-client": "^6.4",
"symfony/routing": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/uid": "^6.4",
"symfony/yaml": "^6.4",
"symfony/string": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/monolog-bridge": "^6.4",
"symfony/twig-bundle": "^6.4",
"doctrine/dbal": "^3.8",
"monolog/monolog": "^2.9 || ^3.0"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"contao/manager-plugin": "^2.0",
"contao/manager-bundle": "^5.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"slam/phpstan-extensions": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.4"
},
"authors": [
{
"name": "XProjects",
"homepage": "https://x-projects.de",
"email": "infos@x-projects.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/xprojects-de/alpdesk-core/issues"
},
"autoload": {
"psr-4": {
"Alpdesk\\AlpdeskCore\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Alpdesk\\AlpdeskCore\\ContaoManager\\Plugin",
"contao-component-dir": "public"
},
"config": {
"contao-component-dir": "public",
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-community-alliance/composer-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
}
}