-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 654 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "simonschaufi/laravel-dkim",
"description": "Laravel package for signing outgoing messages with DKIM.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Schaufelberger",
"email": "simonschaufi+dkim@gmail.com"
}
],
"require": {
"illuminate/mail": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"illuminate/config": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0"
},
"autoload": {
"psr-4": {
"SimonSchaufi\\LaravelDKIM\\": "src/"
}
}
}