-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.14 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
{
"name": "slashworks/contao-simple-job-manager-bundle",
"type": "contao-bundle",
"description": "Simple Job Manager for Google Jobs - extension for Contao Open Source CMS",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Slashworks",
"homepage": "https://github.com/slashworks"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "4.13.* || 5.3.*"
},
"extra": {
"contao-manager-plugin": "Slashworks\\ContaoSimpleJobManagerBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Slashworks\\ContaoSimpleJobManagerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slashworks\\ContaoSimpleJobManagerBundle\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/slashworks/contao-simple-job-manager-bundle/issues",
"source": "https://github.com/slashworks/contao-simple-job-manager-bundle"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true
}
}
}