-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 831 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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": "stann/stream",
"description": "Pipe-native stream processing for PHP 8.5+ — lazy, curried, zero-dependency collection functions designed for the |> pipe operator.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=8.5"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Stann\\Stream\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
}
}