forked from lanlin/nylas-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 940 Bytes
/
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
{
"name": "lanlin/nylas-php",
"description": "Nylas PHP SDK (api version 2.2)",
"license": "MIT",
"authors" : [
{
"name": "lanlin",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/guzzle": ">=7.3",
"respect/validation": "^2.0",
"zbateson/mail-mime-parser": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"fzaninotto/faker": "dev-master",
"nunomaduro/collision": "^6.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Nylas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration tests/phpunit.xml --do-not-cache-result"
}
}