-
Notifications
You must be signed in to change notification settings - Fork 118
/
composer.json
executable file
·57 lines (57 loc) · 1.56 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
{
"name": "mettle/sendportal-core",
"homepage": "https://github.com/mettle/sendportal-core",
"description": "Sendportal core functionality.",
"type": "library",
"license": "MIT",
"authors": [],
"require": {
"php": "^8.2|^8.3",
"ext-json": "*",
"aws/aws-sdk-php-laravel": "^3.9",
"doctrine/dbal": "^4.0",
"illuminate/support": "^10.0|^11.0",
"kriswallsmith/buzz": "^1.2",
"mailgun/mailgun-php": "^4.2",
"mailjet/mailjet-apiv3-php": "^1.6",
"nyholm/psr7": "^1.8",
"postal/postal": "^2.0",
"rap2hpoutre/fast-excel": "^5.4",
"sendgrid/sendgrid": "^8.1",
"wildbit/postmark-php": "^6.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^11.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,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"Sendportal\\Base\\SendportalBaseServiceProvider"
]
}
}
}