-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
62 lines (62 loc) · 1.76 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
{
"name": "codefog/contao-haste",
"description": "haste extension for Contao Open Source CMS",
"keywords": ["contao", "haste"],
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Codefog",
"homepage": "https://codefog.pl"
},
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch"
}
],
"support": {
"issues": "https://github.com/codefog/contao-haste/issues",
"forum": "https://community.contao.org",
"source": "https://github.com/codefog/contao-haste"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13.41 || ^5.3.5",
"symfony/mime": "^5.4 || ^6.0 || ^7.0",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/security-core": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpunit/phpunit": "^9.5",
"terminal42/dc_multilingual": "^4.0",
"terminal42/contao-build-tools": "dev-main"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Codefog\\HasteBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codefog\\HasteBundle\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Codefog\\HasteBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false,
"terminal42/contao-build-tools": true
}
},
"scripts": {
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}