-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.28 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mintware-de/streams",
"description": "A implementation of the PSR-7 StreamInterface",
"keywords": [
"PSR",
"PSR-7",
"StreamInterface",
"ResourceStream",
"MemoryStream",
"InputStream",
"OutputStream",
"FileStream",
"Resource"
],
"type": "library",
"require": {
"php": "^8.2",
"psr/http-message": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0",
"phpstan/phpstan": "^1.11.4",
"friendsofphp/php-cs-fixer": "^v3.58.1"
},
"license": "MIT",
"authors": [
{
"name": "Julian Finkler",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MintWare\\Streams\\": "src/",
"MintWare\\Tests\\Streams\\": "tests/"
}
},
"scripts": {
"fix-cs": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12"
],
"fix-cs:dry-run": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12 --dry-run",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12 --dry-run"
],
"phpstan": [
"./vendor/bin/phpstan"
],
"test": [
"./vendor/bin/phpunit"
]
}
}