forked from mpclarkson/freshdesk-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 825 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
{
"name": "mpclarkson/freshdesk-php-sdk",
"description": "PHP SDK for the Freshdesk API (v2)",
"type": "library",
"homepage": "https://github.com/mpclarkson/freshdesk-php-sdk",
"keywords": ["freshdesk", "customer service", "support", "help desk", "api"],
"license": "MIT",
"authors": [
{
"name": "Matthew Clarkson",
"email": "[email protected]",
"homepage": "http://mpclarkson.github.io/"
}
],
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": ">=4.0,<8.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"evert/phpdoc-md" : "~0.2.0"
},
"autoload": {
"psr-4": {"Freshdesk\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Freshdesk\\tests\\": "tests/" }
}
}