-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
38 lines (38 loc) · 934 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.7)",
"license": "MIT",
"authors" : [
{
"name": "lanlin",
"email": "lanlin1987@gmail.com"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/guzzle": ">=7.7",
"respect/validation": "^2.2",
"zbateson/mail-mime-parser": "^2.4"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^10.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^6.4",
"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"
}
}