-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
55 lines (55 loc) · 1.32 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "m1x0n/helpscout-docs-api-php",
"type": "library",
"description": "API client for the Help Scout Docs API",
"keywords": [
"api",
"api-client",
"docs",
"docs-api",
"helpscout"
],
"homepage": "http://www.helpscout.net",
"license": "MIT",
"scripts": {
"test": "phpunit"
},
"authors": [
{
"name": "Help Scout",
"email": "[email protected]",
"homepage": "http://developer.helpscout.net/",
"role": "Developer"
},
{
"name": "m1x0n",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/m1x0n/helpscout-docs-api-php"
},
"minimum-stability": "stable",
"require": {
"php": ">=8",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.9"
},
"autoload": {
"psr-4": {
"HelpScoutDocs\\": "src/HelpScoutDocs/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.12"
},
"autoload-dev": {
"psr-4": {
"HelpScoutDocs\\Tests\\": "tests/HelpScoutDocs/"
}
}
}