-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 977 Bytes
/
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
{
"name": "phpro/resource-stream",
"description": "A safe OOP wrapper around resource streams",
"type": "library",
"suggest": {
"guzzlehttp/psr7": "If you want to use PSR-7 streams direclty as a resource stream",
"psr/http-message": "If you want to use PSR-7 streams direclty as a resource stream"
},
"require-dev": {
"guzzlehttp/psr7": "^2.7",
"psr/http-message": "^2.0",
"vimeo/psalm": "^5.26",
"php-cs-fixer/shim": "^3.64",
"phpunit/phpunit": "^10.5.36",
"phpro/grumphp-shim": "^2.8"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Phpro\\ResourceStream\\": "src/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true
}
}
}