forked from mettle/sendportal-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·55 lines (54 loc) · 1.48 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
{
"name": "mettle/sendportal-core",
"homepage": "https://github.com/mettle/sendportal-core",
"description": "Sendportal core functionality.",
"type": "library",
"license": "MIT",
"authors": [],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"aws/aws-sdk-php-laravel": "^3.6",
"doctrine/dbal": "^3.0",
"illuminate/support": "^8.0",
"kriswallsmith/buzz": "^1.2",
"mailgun/mailgun-php": "^3.2",
"mailjet/mailjet-apiv3-php": "^1.5",
"nyholm/psr7": "^1.3",
"rap2hpoutre/fast-excel": "^2.3",
"sendgrid/sendgrid": "^7.9",
"wildbit/postmark-php": "^4.0",
"postal/postal": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Sendportal\\Base\\": "src",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Sendportal\\Base\\SendportalBaseServiceProvider"
]
}
}
}