-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "tobybatch/chrome-kimai-plugin",
"description": "Allow a user to log time directly into kimai",
"homepage": "https://www.neontribe.co.uk",
"type": "kimai-plugin",
"version": "0.1",
"require": {
"../../../vendor/kimai/kimai2-composer": "*"
},
"keywords": [
"kimai",
"kimai-plugin"
],
"license": "MIT",
"authors": [
{
"name": "Toby Batch",
"email": "[email protected]",
"homepage": "https://www.neontribe.co.uk"
}
],
"extra": {
"kimai": {
"require": "1.5",
"version": "0.1",
"name": "Chrome Plugin"
}
},
"scripts": {
"codestyle": "php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "php-cs-fixer fix"
}
}