-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
executable file
·59 lines (59 loc) · 1.78 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
{
"name": "mxgross/easy-backup-bundle",
"description": "A Plugin for Kimai versions >2.0.0, which allows you to backup your environment with a single click.",
"homepage": "https://github.com/mxgross/EasyBackupBundle",
"type": "kimai-plugin",
"version": "2.0.3",
"keywords": [
"kimai",
"kimai-plugin",
"EasyBackup",
"Backup"
],
"license": "MIT",
"authors": [
{
"name": "Maximilian Gross",
"email": "info@maximiliangross.de",
"homepage": "https://maximiliangross.de"
}
],
"extra": {
"kimai": {
"require": 20000,
"name": "EasyBackup"
}
},
"scripts": {
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix",
"codestyle-check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --using-cache=no --show-progress=none --format=checkstyle",
"phpstan": "vendor/bin/phpstan analyse . --configuration=phpstan.neon --level=8",
"linting": [
"composer validate --strict --no-check-version",
"@codestyle-check",
"@phpstan"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"kimai/kimai": "2.0.x-dev",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": false
},
"platform": {
"php": "8.1"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}