-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.11 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" : "axn/laravel-notifier",
"description" : "Alerts/notifications for Laravel",
"homepage" : "https://github.com/AXN-Informatique/laravel-notifier",
"support" : {
"issues" : "https://github.com/AXN-Informatique/laravel-notifier/issues"
},
"type": "library",
"license" : "MIT",
"authors" : [{
"name" : "AXN Informatique",
"email" : "[email protected]"
}
],
"require" : {
"php": "^8.2",
"laravel/framework": "^10.0 || ^11.0"
},
"require-dev": {
"laravel/pint": "^1.15.2",
"driftingly/rector-laravel": "^1.1",
"rector/rector": "^1.0.4"
},
"autoload": {
"psr-4": {
"Axn\\Notifier\\" : "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers" : [
"Axn\\Notifier\\ServiceProvider"
]
}
},
"config" : {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability" : "dev"
}