-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
54 lines (54 loc) · 1.65 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
{
"name": "numero2/contao-opengraph3",
"type": "contao-bundle",
"description": "Implementation of OpenGraph tags and X / Twitter Cards for Contao",
"license": "LGPL-3.0+",
"authors": [
{
"name": "numero2 - Agentur für digitales Marketing GbR",
"homepage": "https://www.numero2.de"
}
],
"require": {
"contao/core-bundle": "^4.13 || ^5.0",
"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/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.4"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"extra": {
"contao-manager-plugin": "numero2\\Opengraph3Bundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"numero2\\Opengraph3Bundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"scripts": {
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"php-http/discovery": false,
"contao/manager-plugin": false
}
}
}