-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (46 loc) · 1.56 KB
/
composer.json
File metadata and controls
47 lines (46 loc) · 1.56 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
44
45
46
47
{
"name": "mailjet/mailjet-apiv3-php",
"description": "PHP wrapper for the Mailjet API",
"keywords": ["mailjet", "api", "v3", "php", "email"],
"homepage": "https://github.com/mailjet/mailjet-apiv3-php/",
"license": "MIT",
"authors": [
{
"name": "Mailjet",
"email": "[email protected]",
"homepage": "https://dev.mailjet.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"symfony/validator": "^6.3|^7.0|^8.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4.4",
"phpunit/phpunit": "^11.4.0",
"mockery/mockery": "^1.4",
"php-coveralls/php-coveralls": "^2.0",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "^2.0",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"guzzlehttp/guzzle": "PSR-18 compatible HTTP client",
"symfony/http-client": "PSR-18 compatible HTTP client (use with nyholm/psr7 for PSR-17 factories)"
},
"autoload": {
"psr-0": {
"Mailjet": "src/"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}