-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
{
"name": "leantime/estimateimport",
"description": "Estimate import plugin",
"license": "MIT",
"type": "leantime-plugin",
"version": "2.0.1",
"authors": [
{
"name": "Jeppe Krogh",
"email": "kjej@aarhus.dk"
}
],
"homepage": "https://github.com/itk-leantime/leantime-estimateimport",
"require": {
"psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.51",
"leantime/leantime": "^3.4.5",
"phpcsstandards/phpcsextra": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9",
"zebra-north/phpcs-short-types": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"metasyntactical/composer-plugin-license-check": true,
"php-http/discovery": true
}
},
"scripts": {
"code-analysis": [
"@code-analysis/phpstan"
],
"code-analysis/phpstan": [
"phpstan analyse"
],
"coding-standards-apply": [
"@coding-standards-apply/phpcbf"
],
"coding-standards-apply/phpcbf": [
"phpcbf ."
],
"coding-standards-check": [
"@coding-standards-check/phpcs"
],
"coding-standards-check/phpcs": [
"phpcs ."
],
"test": [
"phpunit tests/"
]
}
}