-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.67 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.67 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
48
49
50
{
"name": "sebastiankrupinski/jmap-client-php",
"type": "library",
"description": "Type-safe PHP client for JMAP mail, calendar, contacts, files, and tasks APIs",
"keywords": ["jmap", "mail", "calendar", "contacts", "files", "tasks", "email", "api-client"],
"homepage": "https://github.com/SebastianKrupinski/jmap-client-php",
"support": {
"issues": "https://github.com/SebastianKrupinski/jmap-client-php/issues",
"source": "https://github.com/SebastianKrupinski/jmap-client-php"
},
"license": "AGPL-3.0-only",
"authors": [
{
"name": "Sebastian Krupinski",
"email": "krupinski01@gmail.com",
"homepage": "https://github.com/SebastianKrupinski/",
"role": "Just another Minion in the cogs of time"
}
],
"autoload": {
"psr-4": {
"JmapClient\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"JmapClient\\Tests\\Unit\\": "tests/unit/",
"JmapClient\\Tests\\Integration\\": "tests/integration/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89",
"guzzlehttp/guzzle": "^7.0",
"phpunit/phpunit": "^11.0"
},
"scripts": {
"test:unit": "./vendor/bin/phpunit --testsuite 'Unit Tests'",
"test:integration": "./vendor/bin/phpunit --testsuite 'Integration Tests'",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}
}