-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.88 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
60
61
62
{
"name": "keleo/invoice-format-fixation-plugin",
"description": "Kimai extension to configure a language, which will be used to format money, date and time values in invoices",
"homepage": "https://www.kimai.org/store/invoice-format-fixation-bundle.html",
"type": "kimai-plugin",
"version": "2.0",
"keywords": [
"kimai",
"kimai-plugin"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Papst",
"homepage": "https://www.keleo.de"
}
],
"autoload": {
"psr-4": {
"KimaiPlugin\\InvoiceFormatFixationBundle\\": ""
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": false,
"symfony/flex": false,
"symfony/runtime": false
},
"platform": {
"php": "8.1.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"kimai": {
"require": 20000,
"name": "Invoice format fixation"
}
},
"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 . -c phpstan.neon --level=7",
"linting": [
"composer validate --strict --no-check-version",
"@codestyle-check",
"@phpstan"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"kimai/kimai": "dev-main",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.0"
}
}