-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
44 lines (44 loc) · 967 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": "void/void",
"description": "void",
"license": "MIT",
"require": {
"php": "^8.2",
"nikolaposa/version": "^4.1",
"wyrihaximus/constants": "^1.6"
},
"require-dev": {
"wyrihaximus/test-utilities": "^5.2.1"
},
"autoload": {
"psr-4": {
"WyriHaximus\\Github\\Actions\\NextSemVers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Tests\\Github\\Actions\\NextSemVers\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true
},
"platform": {
"php": "8.2.13"
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize || true"
],
"post-update-cmd": [
"composer normalize || true"
]
}
}