forked from kimai/DemoBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.63 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
{
"name": "keleo/demo-plugin",
"description": "Showcase extension points within Kimai",
"homepage": "https://www.kimai.org/store/demo-bundle.html",
"type": "kimai-plugin",
"version": "0.9",
"keywords": [
"kimai",
"kimai-plugin"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Papst",
"email": "[email protected]",
"homepage": "https://www.keleo.de"
}
],
"autoload": {
"psr-4": {
"KimaiPlugin\\DemoBundle\\": ""
}
},
"config": {
"platform": {
"php": "7.2.9"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"kimai": {
"require": "1.11",
"version": "0.9",
"name": "Developer demo"
}
},
"scripts": {
"codestyle": "php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "php-cs-fixer fix",
"codestyle-check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --config=.php_cs.dist --using-cache=no --show-progress=none --format=checkstyle",
"phpstan": "vendor/bin/phpstan analyse . -c phpstan.neon --level=7",
"linting": [
"composer validate",
"@codestyle-check",
"@phpstan"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.12.19",
"phpstan/phpstan-doctrine": "^0.12.10",
"kevinpapst/kimai2": "1.11",
"symfony/console": "^4.0",
"symfony/event-dispatcher": "^4.0"
}
}