-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 923 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
{
"name": "codelabmw/statuses",
"description": "A PHP package that houses commonly used status classes and enums that can be used in PHP projects.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"http-status-codes",
"http-status",
"http"
],
"authors": [
{
"name": "Chikondi Kamwendo",
"email": "kondie208@gmail.com"
}
],
"autoload": {
"psr-4": {
"Codelabmw\\Statuses\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": "^8.0"
},
"scripts": {
"test": "./vendor/bin/pest"
},
"require-dev": {
"pestphp/pest": "^1.21"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}