-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.61 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
{
"name": "alpdesk/alpdesk-frontendediting",
"description": "Frontendediting for Contao 4",
"keywords": [
"contao",
"frontendediting"
],
"type": "contao-bundle",
"homepage": "https://github.com/xprojects-de/alpdesk-frontendediting",
"license": "MIT",
"authors": [
{
"name": "XProjects",
"homepage": "https://x-projects.de",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/xprojects-de/alpdesk-frontendediting/issues",
"wiki": "https://github.com/xprojects-de/alpdesk-frontendediting/wiki"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"contao/core-bundle": "^4.13"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"contao/manager-bundle": "^4.13",
"contao/manager-plugin": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"slam/phpstan-extensions": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.4 || 6.0"
},
"autoload": {
"psr-4": {
"Alpdesk\\AlpdeskFrontendediting\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Alpdesk\\AlpdeskFrontendediting\\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
}
}
}