-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 884 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "lduer/custom-timesheet-form-plugin",
"description": "A Kimai 2 plugin, modifies the timesheet form.",
"homepage": "https://github.com/lduer",
"type": "kimai-plugin",
"version": "1.1",
"require": {
"kimai/kimai2-composer": "*"
},
"keywords": [
"kimai",
"kimai-plugin"
],
"license": "MIT",
"authors": [
{
"name": "lduer",
"email": "duerlukas@gmail.com"
}
],
"extra": {
"kimai": {
"require": "1.4",
"version": "0.3",
"name": "CustomTimesheetFormBundle"
}
},
"scripts": {
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
}
}