-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
65 lines (65 loc) · 1.53 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "colinodell/json5",
"type": "library",
"description": "UTF-8 compatible JSON5 parser for PHP",
"keywords": [
"json5",
"json",
"json5_decode",
"json_decode"
],
"homepage": "https://github.com/colinodell/json5",
"license": "MIT",
"authors": [
{
"name": "Colin O'Dell",
"email": "colinodell@gmail.com",
"homepage": "https://www.colinodell.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"mikehaertl/php-shellcommand": "^1.7.0",
"phpstan/phpstan": "^2.0",
"scrutinizer/ocular": "^1.9",
"squizlabs/php_codesniffer": "^3.8.1",
"symfony/finder": "^6.0|^7.0",
"symfony/phpunit-bridge": "^7.0.3"
},
"autoload": {
"psr-4": {
"ColinODell\\Json5\\": "src"
},
"files": ["src/global.php"]
},
"autoload-dev": {
"psr-4": {
"ColinODell\\Json5\\Test\\": "test"
}
},
"bin": ["bin/json5"],
"scripts": {
"test": [
"@phpunit",
"@check-style",
"@phpstan"
],
"phpunit": "simple-phpunit",
"phpstan": "phpstan analyse",
"check-style": "phpcs",
"fix-style": "phpcbf"
},
"extra": {
"branch-alias": {
"dev-main": "4.0-dev"
}
},
"config": {
"sort-packages": true
}
}