-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 loc) · 1.43 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
57
58
{
"name": "sethsandaru/laravel-mail-switcher",
"type": "library",
"description": "Laravel Mail Switcher for Budget Laravel Application",
"keywords": [
"laravel library",
"laravel mail switcher",
"laravel switching email credentials to send out emails"
],
"authors": [
{
"name": "Seth Chen",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"laravel/framework": "^9|dev-master"
},
"require-dev": {
"fakerphp/faker": "^v1.20.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.5.25",
"orchestra/testbench": "^7",
"phpunit/php-code-coverage": "^9.2.17"
},
"extra": {
"laravel": {
"providers": [
"SethPhat\\MailSwitcher\\ServiceProvider"
],
"alias": {
"MailSwitcher": "\\SethPhat\\MailSwitcher\\Facade"
}
}
},
"autoload": {
"psr-4": {
"SethPhat\\MailSwitcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SethPhat\\MailSwitcher\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}