-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1006 Bytes
/
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
{
"name": "tebe/http-factory",
"type": "library",
"description": "HTTP Factory provides automatic detection for Composer packages implementing the PSR-17 standard",
"license": "MIT",
"keywords": [
"psr-7",
"psr-15",
"psr-11",
"psr-17",
"middleware",
"http"
],
"require": {
"php": ">=8.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.0",
"slim/slim": "^3.0",
"squizlabs/php_codesniffer": "^3.0",
"nyholm/psr7": "^1.0",
"phpunit/phpunit": "^9.0",
"nyholm/psr7-server": "^1.0",
"guzzlehttp/psr7": "^2.0"
},
"autoload": {
"psr-4": {
"Tebe\\HttpFactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Tebe\\HttpFactory\\": "tests/"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpunit"
],
"phpcbf": "./vendor/bin/phpcbf",
"phpcs": "./vendor/bin/phpcs",
"phpunit": "./vendor/bin/phpunit"
}
}