-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 846 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 846 Bytes
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
{
"name": "ph-7/just-http-status-codes",
"description": "Just all HTTP status codes",
"keywords": [
"HTTP code",
"HTTP status code",
"status code",
"PHP status codes",
"clean code",
"constant",
"constants",
"http",
"code",
"magic number",
"all status codes",
"all HTTP status codes"
],
"homepage": "https://pierrehenry.be",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"PH7\\JustHttp\\": "src"
}
},
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "hi@ph7.me",
"role": "Principle Developer",
"homepage": "https://ph7.me"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "stable"
}