mirrored from https://git.sr.ht/~ancarda/psr7-string-stream
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "ancarda/psr7-string-stream",
"description": "Minimal string based PSR-7 StreamInterface implementation",
"type": "library",
"license": "MIT",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"autoload": {
"psr-4": {
"Ancarda\\Psr7\\StringStream\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"ancarda/coverage-enforcer": "^1.0",
"infection/infection": "^0.24.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.13"
},
"scripts": {
"analyze": "phpstan",
"check-coverage": "enforce-coverage --minStmtCov 100 var/coverage/coverage.clover.xml",
"check-style": "phpcs",
"check-tests": "infection --min-msi=100",
"fix-style": "phpcbf",
"test": "phpunit"
}
}