-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·56 lines (56 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "jstoone/nova-mailman",
"description": "Conveniently route all emails to a local mailbox.",
"keywords": [
"laravel",
"nova"
],
"homepage": "https://github.com/jstoone/nova-mailman",
"license": "MIT",
"authors": [
{
"name": "Jakob Steinn",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"laravel/nova": "*",
"spatie/sheets": "^1.2"
},
"require-dev": {
"codacy/coverage": "^1.4",
"nunomaduro/larastan": "^0.3.10",
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "~7.1"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Jstoone\\Mailman\\MailmanServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Jstoone\\Mailman\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jstoone\\Mailman\\Tests\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}