-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "jetemail/jetemail-php",
"description": "JetEmail PHP SDK — Send transactional emails with ease.",
"keywords": ["jetemail", "email", "transactional", "api", "sdk", "php"],
"homepage": "https://github.com/jetemail/jetemail-php",
"license": "MIT",
"authors": [
{
"name": "JetEmail",
"homepage": "https://jetemail.com"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.34|^3.0|^4.0"
},
"autoload": {
"psr-4": {
"JetEmail\\": "src/"
},
"files": [
"src/JetEmail.php"
]
},
"autoload-dev": {
"psr-4": {
"JetEmail\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}