-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.25 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
{
"name": "kimai/cli",
"license": "MIT",
"type": "project",
"description": "Kimai - console application to manage your time-tracking data remotely",
"authors": [
{
"name": "Kevin Papst",
"homepage": "https://www.kevinpapst.de"
}
],
"require": {
"php": "8.1.*||8.2.*||8.3.*||8.4.*",
"ext-iconv": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"kimai/api-php": "^2.0",
"symfony/console": "6.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^2.0"
},
"config": {
"platform": {
"php": "8.1"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"KimaiConsole\\": "src/"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.*"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src -c phpstan.neon --level=7",
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix"
}
}