-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (45 loc) · 1.03 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
42
43
44
45
{
"name": "juststeveking/http-status-code",
"description": "A simple class to return correct status codes for http responses",
"type": "library",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Steve McDougall",
"email": "[email protected]",
"homepage": "https://www.juststeveking.uk"
}
],
"require": {
"php": "^8.1"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"JustSteveKing\\StatusCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JustSteveKing\\Tests\\StatusCode\\": "tests/"
}
},
"require-dev": {
"laravel/pint": "^0.2.3",
"phpunit/phpunit": "^9.5.4",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"analyse": "./vendor/bin/phpstan analyse --memory-limit=256m",
"prepare": [
"./vendor/bin/phpunit",
"./vendor/bin/pint",
"./vendor/bin/phpstan analyse --memory-limit=256m"
]
}
}