-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 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
{
"name": "nyholm/psr7-server",
"description": "Helper classes to handle PSR-7 server requests",
"license": "MIT",
"keywords": ["psr-7", "psr-17"],
"homepage": "http://tnyholm.se",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
},
{
"name": "Martijn van der Ven",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.5 || ^9.3",
"nyholm/psr7": "^1.3",
"nyholm/nsa": "^1.1"
},
"autoload": {
"psr-4": {
"Nyholm\\Psr7Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Nyholm\\Psr7Server\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}