-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 872 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
{
"name": "sethsharp/blog-crud",
"description": "A blog CRUD package",
"license": "MIT",
"authors": [
{
"name": "Seth Sharp",
"homepage": "https://www.sethsharpportfolio.com/",
"role": "Maintainer, Developer"
}
],
"homepage": "https://github.com/SethSharp/Blog",
"keywords": [
"Laravel",
"Blog"
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0|^11.0",
"codinglabsau/laravel-roles": "^2.4",
"laravel/slack-notification-channel": "^3.2",
"intervention/image-laravel": "^1.2",
"aws/aws-sdk-php": "^3.298"
},
"autoload": {
"psr-4": {
"SethSharp\\BlogCrud\\": "src",
"SethSharp\\BlogCrud\\Database\\Factories\\": "src/Database/Factories"
}
},
"extra": {
"laravel": {
"providers": [
"SethSharp\\BlogCrud\\BlogServiceProvider"
]
}
}
}