-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.9 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "phunkie/streams",
"description": "Functional Streams for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"phunkie/phunkie": "^1.1.0",
"phunkie/effect": "^1.2.0"
},
"require-dev": {
"pestphp/pest": "^3",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.90",
"phunkie/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Phunkie\\Streams\\": "src/",
"Tests\\Phunkie\\Streams\\": "tests/"
},
"files": [
"src/Functions/common.php"
]
},
"suggest": {
"ext-parallel": "Required for parallel processing capabilities",
"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"
},
"scripts": {
"test": "pest",
"phpstan": "phpstan analyse --memory-limit=512M",
"cs-fix": "php-cs-fixer fix --allow-risky=yes",
"cs-check": "php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"lint": [
"@cs-check",
"@phpstan"
],
"test-all": "scripts/test-all-versions.sh",
"check": [
"@lint",
"@test"
]
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}