-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.83 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.83 KB
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
69
70
71
72
73
{
"name": "guave/insertmodulebyalias-bundle",
"description": "Insert Module by Alias Insert Tag for Contao 5.0+",
"license": "ISC",
"type": "contao-bundle",
"homepage": "https://www.guaveinteractive.ch",
"support": {
"issues": "https://github.com/guavestudios/insertmodulebyaliasbundle/issues",
"source": "https://github.com/guavestudios/insertmodulebyaliasbundle"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^5.0",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/http-kernel": "^6.4 || ^7.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"contao/manager-plugin": "^2.3.1",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^6.4 || ^7.4"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Guave\\InsertModuleByAliasBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"autoload-dev": {
"psr-4": {
"Guave\\InsertModuleByAliasBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools",
"forward-command": true
},
"contao-manager-plugin": "Guave\\InsertModuleByAliasBundle\\ContaoManager\\Plugin"
},
"scripts": {
"all": [
"@unit-tests",
"@ecs",
"@phpstan"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}