-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 2.24 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
{
"name": "oveleon/product-installer",
"description": "Provides the possibility to install products in the Contao backend.",
"license": "AGPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Oveleon",
"homepage": "https://www.oveleon.de"
},
{
"name": "Daniele Sciannimanica",
"homepage": "https://github.com/doishub"
}
],
"homepage": "https://www.oveleon.de",
"require": {
"ext-dom": "*",
"php": "^8.1",
"composer-runtime-api": "2.*",
"contao/core-bundle": "^4.13 | ^5.0",
"composer/semver": "^3.3",
"doctrine/dbal": "^3.3",
"knplabs/github-api": "^3.9",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client-contracts": "^2.4 || ^3.1",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/mime": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0",
"symfony/security-core": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^2.3 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.3.1",
"shipmonk/composer-dependency-analyser": "^1.6"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Oveleon\\ProductInstaller\\": "src/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"contao-manager-plugin": "Oveleon\\ProductInstaller\\ContaoManager\\Plugin"
},
"scripts": {
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php"
}
}