-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.5 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
{
"version": "2.0.0",
"name": "glorpen/kimai-duration-plugin",
"description": "Enables setting duration rounding option (same as global one) to override rounding for any Customer, Project or Activity.",
"authors": [
{
"name": "Arkadiusz Dzięgiel",
"email": "arkadiusz.dziegiel@glorpen.pl",
"homepage": "https://glorpen.eu"
}
],
"type": "kimai-plugin",
"autoload": {
"psr-4": {
"KimaiPlugin\\GlorpenDurationBundle\\": ""
}
},
"scripts": {
"codestyle": "php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "php-cs-fixer fix",
"codestyle-check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --config=.php-cs-fixer.dist.php --using-cache=no --show-progress=none --format=checkstyle",
"phpstan": "vendor/bin/phpstan analyse . -c phpstan.neon --level=7",
"linting": [
"composer validate --no-check-lock --no-check-version",
"@codestyle-check",
"@phpstan"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.9.16",
"phpstan/phpstan-doctrine": "^1.3.32",
"kimai/kimai": "^2.0.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.2.5"
},
"extra": {
"kimai": {
"require": 20000,
"version": "2.0.0",
"name": "Overridable duration rounding"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": "^8"
},
"license": "GPL-3.0-or-later"
}