-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.42 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "michaelalexeevweb/php-json-chunk",
"description": "Memory-efficient PHP library for streaming large JSON arrays with chunked reads, generators, and iterators.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"json",
"stream",
"streaming",
"json-streaming",
"json-chunk",
"generator",
"iterator",
"memory-efficient",
"large-json"
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"ergebnis/phpstan-rules": "^2.13",
"halaxa/json-machine": "^1.2",
"salsify/json-streaming-parser": "^8.3",
"klkvsk/json-decode-stream": "^1.0",
"maxakawizard/json-collection-parser": "^1.10",
"crocodile2u/json-streamer": "^1.0"
},
"autoload": {
"psr-4": {
"PhpJsonChunk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpJsonChunk\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --exclude-group performance",
"test:performance": "phpunit --group performance",
"benchmark": "php bin/benchmark.php",
"compare": "php bin/benchmark.php",
"phpstan": "phpstan analyse --configuration=phpstan.neon.dist --memory-limit=1G"
},
"minimum-stability": "stable",
"prefer-stable": true
}