-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 1 KB
/
composer.json
File metadata and controls
31 lines (31 loc) · 1 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
{
"name": "egyjs/progressive-json-php",
"version": "1.1.0",
"description": "Framework-agnostic Progressive JSON Streamer for PHP - breadth-first JSON streaming with placeholders, inspired by Dan Abramov's Progressive JSON.",
"keywords": ["php", "json", "stream", "streaming", "progressive json", "progressive-json", "react", "suspense", "laravel", "symfony", "vue", "breadth-first json"],
"type": "library",
"require": {
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"php": ">=8.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Egyjs\\ProgressiveJson\\": "src/"
}
},
"authors": [
{
"name": "egyjs",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=build/coverage-html",
"test:watch": "phpunit --testdox"
}
}