-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"name": "phunkie/streams",
"require": {
"phunkie/phunkie": "^0.11.3"
},
"autoload": {
"psr-4": {
"Phunkie\\Streams\\": "src/",
"Tests\\Phunkie\\Streams\\": "tests/"
},
"files": [
"src/Functions/common.php"
]
},
"authors": [
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"suggest": {
"ext-mbstring": "Required for encoding and decoding text in various encodings",
"ext-json": "Required for JSON encoding and decoding",
"ext-pcntl": "Required for process control in Unix-like operating systems",
"ext-posix": "Required for POSIX functions, useful for multi-threading and process control",
"ext-zlib": "Required for stream compression and decompression",
"ext-sockets": "Required for socket communication in networking applications"
},
"require-dev": {
"pestphp/pest": "^2.35"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}