-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
56 lines (56 loc) · 1.74 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
{
"name": "plenta/contao-jobs-basic-bundle",
"type": "contao-bundle",
"description": "Basic Job Manager for Contao (including Google Jobs).",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Plenta.io",
"homepage": "https://plenta.io"
}
],
"funding": [{
"type": "github",
"url": "https://github.com/sponsors/plenta"
}],
"support":{
"issues": "https://github.com/plenta/contao-jobs-basic-bundle/issues",
"source": "https://github.com/plenta/contao-jobs-basic-bundle",
"docs": "https://plenta.io/contao-erweiterungen/jobs-basic"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"contao/conflicts": "@dev",
"contao/core-bundle": "^4.13",
"doctrine/orm": "^2.6.4",
"doctrine/data-fixtures": "^1.4.2",
"doctrine/dbal": "^2.10.1 || ^3.2.0",
"mvo/contao-group-widget": "^1.4",
"symfony/intl": "^5.4",
"symfony/form": "^5.4"
},
"require-dev": {
"contao/manager-bundle": "^4.13",
"phpunit/phpunit": "^9.5.10",
"contao/test-case": "^4.4.0",
"symfony/phpunit-bridge": "v5.3.8",
"friendsofphp/php-cs-fixer": "^3.2"
},
"extra": {
"contao-manager-plugin": "Plenta\\ContaoJobsBasic\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Plenta\\ContaoJobsBasic\\": "src/Plenta/ContaoJobsBasic"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"contao-community-alliance/composer-plugin": true
}
}
}