forked from mborek-elastique/freshdesk-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "hasfoug/freshdesk-php-sdk",
"description": "PHP SDK for the Freshdesk API (v2)",
"type": "library",
"homepage": "https://github.com/michal-borek/freshdesk-php-sdk",
"keywords": ["freshdesk", "customer service", "support", "help desk", "api"],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Matthew Clarkson",
"email": "mpclarkson@hilenium.com",
"homepage": "http://mpclarkson.github.io/"
},
{
"name": "Michał Borek",
"email": "michal.borek@fwrd.eu",
"homepage": "http://fwrd.eu/"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"phpdocumentor/phpdocumentor": "2.*",
"evert/phpdoc-md" : "^0.2"
},
"autoload": {
"psr-4": {"Freshdesk\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Freshdesk\\tests\\": "tests/" }
}
}