-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 936 Bytes
/
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
{
"name": "pluswerk/grumphp-bom-task",
"description": "Force files to have no BOM",
"license": "LGPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Matthias Vogel",
"email": "m.vogel@andersundsehr.com",
"homepage": "https://www.andersundsehr.com"
}
],
"support": {
"issues": "https://github.com/pluswerk/grumphp-bom-task/issues"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"phpro/grumphp": "^2.0.0"
},
"require-dev": {
"pluswerk/grumphp-config": "^6.8.0"
},
"autoload": {
"psr-4": {
"PLUS\\GrumPHPBomTask\\": "src/"
}
},
"bin": [
"bin/fixbom"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true
}
},
"extra": {
"branch-alias": {
"dev-main": "8.0.x-dev"
}
}
}