-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 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": "illuminate/notifications",
"description": "The Illuminate Notifications package.",
"license": "MIT",
"homepage": "https://laravel.com",
"support": {
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"illuminate/broadcasting": "^13.0",
"illuminate/bus": "^13.0",
"illuminate/collections": "^13.0",
"illuminate/container": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/filesystem": "^13.0",
"illuminate/mail": "^13.0",
"illuminate/queue": "^13.0",
"illuminate/support": "^13.0"
},
"autoload": {
"psr-4": {
"Illuminate\\Notifications\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "13.0.x-dev"
}
},
"suggest": {
"illuminate/database": "Required to use the database transport (^13.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}