-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 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
{
"name": "anteris-dev/laravel-security-notifications",
"description": "Warn your users when significant security events occur so that they aren't the next victim of an attacker.",
"license": "MIT",
"authors": [
{
"name": "Aidan Casey",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Anteris\\LaravelSecurityNotifications\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Anteris\\Tests\\LaravelSecurityNotifications\\": "./tests"
}
},
"require": {
"illuminate/contracts": "^8.55",
"illuminate/notifications": "^8.55"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.9",
"orchestra/testbench": "^6.20"
},
"extra": {
"laravel": {
"providers": [
"Anteris\\LaravelSecurityNotifications\\LaravelSecurityNotificationsServiceProvider"
]
}
}
}