-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.3 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
{
"name": "wyrihaximus/json-throwable",
"description": "\ud83d\udce0 JSON encode and decode throwables and exceptions",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8.2",
"doctrine/instantiator": "^2",
"thecodingmachine/safe": "^2.5",
"wyrihaximus/json-utilities": "^1.3.1"
},
"require-dev": {
"wyrihaximus/test-utilities": "^6.0.7"
},
"autoload": {
"psr-4": {
"WyriHaximus\\": "src/"
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.2.13"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}