Skip to content

Commit a73dd97

Browse files
committed
initial commit
0 parents  commit a73dd97

22 files changed

+5489
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Laravel Collective Package Contribution Guide
2+
3+
Thank you for considering contributing to a Laravel Collective Package! The follow the Laravel contribution guide which can be found in the [Laravel documentation](http://laravel.com/docs/contributions). Please review the entire guide before sending a pull request.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Mhammed Talhaouy
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Laravel Errors
2+
3+
This Package makes it easy to display custom error pages for various HTTP status codes. you can also use the one in laravel [Custom HTTP Error Pages](https://laravel.com/docs/9.x/errors#custom-http-error-pages)
4+
5+
⚡️ Install :
6+
7+
```sh
8+
composer require tal7aouy/errors
9+
```
10+
11+
## License
12+
13+
[MIT © License](LICENSE)

composer.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "tal7aouy/errors",
3+
"description": "Error pages for the Laravel Framework using Tailwind.css",
4+
"license": "MIT",
5+
"homepage": "https://github.com/tal7aouy/errors#readme",
6+
"support": {
7+
"issues": "https://github.com/tal7aouy/errors/issues",
8+
"source": "https://github.com/tal7aouy/errors"
9+
},
10+
"authors": [
11+
{
12+
"name": "Mhammed Talhaouy",
13+
"email": "[email protected]",
14+
"role": "PHP Developer"
15+
}
16+
],
17+
"require": {
18+
"php": "^8.0.2",
19+
"laravel/framework": ">=8.65"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"Tal7aouy\\Errors\\": "src/"
24+
}
25+
},
26+
"extra": {
27+
"laravel": {
28+
"providers": [
29+
"Tal7aouy\\Errors\\ErrorsServiceProvider"
30+
]
31+
},
32+
"branch-alias": {
33+
"dev-master": "1.0-dev"
34+
}
35+
},
36+
"minimum-stability": "dev",
37+
"prefer-stable": true
38+
}

0 commit comments

Comments
 (0)