-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
56 lines (56 loc) · 1.36 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": "railsware/mailtrap-php",
"description": "The Mailtrap SDK provides methods for all API functions.",
"keywords": ["mailtrap", "mailtrap-io", "php", "mail", "email", "sdk", "plugin", "symfony", "laravel"],
"homepage": "https://github.com/railsware/mailtrap-php",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-client-implementation": "^1.0",
"php-http/client-common": "^2.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.0",
"symfony/mime": "^6.0|^7.0",
"egulias/email-validator": "^2.1.10|^3.1|^4",
"psr/http-factory": "^1.1"
},
"require-dev": {
"symfony/http-client": "^6.0|^7.0",
"symfony/mailer": "^6.0|^7.0",
"phpunit/phpunit": "^9",
"nyholm/psr7": "^1.5"
},
"suggest": {
"nyholm/psr7": "PSR-7 message implementation",
"symfony/http-client": "HTTP client"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Mailtrap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mailtrap\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mailtrap\\Bridge\\Laravel\\MailtrapApiProvider"
]
}
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}