-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 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
{
"name": "phpwatch/laravel-fast404",
"description": "A Laravel middleware to quickly terminate Page-Not-Found pages that do not require a full HTML page",
"type": "library",
"keywords": ["larvel", "middleware", "performance", "fast404", "phpwatch"],
"homepage": "https://github.com/PHPWatch/Laravel-Fast404",
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"illuminate/http": "^5.5 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"PHPWatch\\LaravelFast404\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPWatch\\LaravelFast404\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PHPWatch\\LaravelFast404\\Fast404ServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "Ayesh Karunaratne",
"email": "[email protected]"
}
]
}