forked from modprobe/phpstan-bitbucket
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.25 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
{
"name": "swisnl/phpstan-bitbucket",
"type": "phpstan-extension",
"description": "PHPStan error formatter for Bitbucket Pipeline Reports",
"keywords": [
"phpstan",
"error-formatter",
"bitbucket",
"pipeline",
"reports",
"testing"
],
"homepage": "https://github.com/swisnl/phpstan-bitbucket",
"license": "MIT",
"authors": [
{
"name": "Alexander Timmermann",
"email": "alex@timmermann.me"
},
{
"name": "Jasper Zonneveld",
"email": "jasper@swis.nl",
"homepage": "https://github.com/JaZo",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"phpstan/phpstan": "^1.0",
"swisnl/bitbucket-reports": "^0.1"
},
"require-dev": {
"laravel/pint": "^1.2"
},
"autoload": {
"psr-4": {
"Swis\\PHPStan\\ErrorFormatter\\": "src"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true
}
}