-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
90 lines (90 loc) · 2.85 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "janborg/contao-ical-bundle",
"description": "Bietet ical Funktionen für den Contao Kalender",
"keywords": [
"Kalender",
"ical",
"ics",
"webcal",
"Export"
],
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Jan Lünborg",
"homepage": "https://github.com/janborg"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"contao/calendar-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^3.6",
"kigkonsult/icalcreator": "^2.4",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0",
"symfony/security-core": "^5.4 || ^6.0"
},
"require-dev": {
"contao/easy-coding-standard": "^6.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^10.0.16",
"bamarni/composer-bin-plugin": "^1.5",
"contao/manager-plugin": "^2.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"shipmonk/composer-dependency-analyser": "^1.7"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Janborg\\ContaoIcal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Janborg\\ContaoIcal\\Tests\\": "tests/"
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools",
"forward-command": true
},
"contao-manager-plugin": "Janborg\\ContaoIcal\\ContaoManager\\Plugin"
},
"support": {
"issues": "https://github.com/janborg/contao-ical-bundle/issues",
"source": "https://github.com/janborg/contao-ical-bundle"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-community-alliance/composer-plugin": true,
"contao/manager-plugin": true,
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"all": [
"@depcheck",
"@ecs",
"@phpstan",
"@unit-tests"
],
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php",
"ecs": "@php vendor/bin/ecs check src tests config --config ecs.php --fix --ansi",
"phpstan": "@php vendor/bin/phpstan analyze src tests config --configuration phpstan.neon --no-progress --ansi",
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}