-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
61 lines (61 loc) · 1.73 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
{
"name": "keleo/custom-css-plugin",
"description": "Edit custom CSS rules through an administration screen.",
"homepage": "https://www.kimai.org/store/keleo-css-custom-bundle.html",
"type": "kimai-plugin",
"version": "2.2.0",
"keywords": [
"kimai",
"kimai-plugin"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Papst",
"homepage": "https://www.kimai.org"
}
],
"extra": {
"kimai": {
"require": 21700,
"name": "Custom CSS"
}
},
"autoload": {
"psr-4": {
"KimaiPlugin\\CustomCSSBundle\\": ""
}
},
"config": {
"allow-plugins": {
"symfony/flex": false,
"symfony/runtime": false
},
"platform": {
"php": "8.1.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"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 . --configuration=phpstan.neon",
"linting": [
"composer validate --strict --no-check-version",
"@codestyle-check",
"@phpstan"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"kimai/kimai": "dev-main",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.0"
}
}