forked from mettle/sendportal-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·54 lines (53 loc) · 1.4 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
{
"name": "mettle/sendportal-core",
"homepage": "https://github.com/mettle/sendportal-core",
"description": "Sendportal core functionality.",
"type": "library",
"license": "MIT",
"authors": [],
"require": {
"php": "^7.2.5",
"ext-json": "*",
"aws/aws-sdk-php-laravel": "^3.4",
"doctrine/dbal": "^2.10",
"illuminate/support": "^7.0",
"kriswallsmith/buzz": "^1.1",
"laravel/ui": "^2.0",
"laravelcollective/html": "^6.0|^7.0",
"mailgun/mailgun-php": "^3.0",
"mailjet/mailjet-apiv3-php": "^1.4",
"nyholm/psr7": "^1.2",
"rap2hpoutre/fast-excel": "^1.7",
"sendgrid/sendgrid": "^7.3",
"wildbit/postmark-php": "^2.8"
},
"require-dev": {
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Sendportal\\Base\\": "src"
}
},
"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"
]
}
}
}