generated from cerbero90/skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
65 lines (65 loc) · 1.63 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": "cerbero/json-parser",
"type": "library",
"description": "Zero-dependencies pull parser to read large JSON from any source in a memory-efficient way.",
"keywords": [
"json",
"parser",
"json-parser",
"lexer",
"memory"
],
"homepage": "https://github.com/cerbero90/json-parser",
"license": "MIT",
"authors": [{
"name": "Andrea Marco Sartori",
"email": "[email protected]",
"homepage": "https://github.com/cerbero90",
"role": "Developer"
}],
"require": {
"php": "^8.1"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"illuminate/http": ">=6.20",
"mockery/mockery": "^1.5",
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.9",
"scrutinizer/ocular": "^1.8",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"guzzlehttp/guzzle": "Required to load JSON from endpoints (^7.2)."
},
"autoload": {
"psr-4": {
"Cerbero\\JsonParser\\": "src"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Cerbero\\JsonParser\\": "tests"
}
},
"scripts": {
"test": "pest",
"static": "phpstan analyze",
"check-style": "phpcs --standard=PSR12 src",
"fix-style": "phpcbf --standard=PSR12 src"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}