-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 877 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
{
"name": "saurabhsharma/http-status-code",
"description": "A simple class to return correct status codes for http responses",
"type": "library",
"license": "MIT",
"keywords": [
"http status code",
"saurabhsharma",
"http Codes"
],
"authors": [
{
"role": "Developer",
"name": "Saurabh Sharma",
"email": "[email protected]",
"homepage": "https://www.svss.me/"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SaurabhSharma\\StatusCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SaurabhSharma\\Tests\\StatusCode\\": "Tests/"
}
},
"require": {
"php": "^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0"
},
"require-dev": {
"pestphp/pest": "1.x-dev"
}
}