-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 995 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
39
{
"name": "lamesya/freshdesk",
"description": "Freshdesk API client for PHP and/or Laravel",
"type": "library",
"keywords": ["freshdesk", "api", "client", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Joel Bije",
"email": "kumag223@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "~7.0|~6.0|~5.0|~4.0",
"illuminate/support": "^10.0",
"laravel/helpers": "^1.0",
"php": ">=8.1"
},
"require-dev": {
"symfony/var-dumper": "^2.7",
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"Lamesya\\Freshdesk\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Lamesya\\Freshdesk\\FreshdeskServiceProvider"
],
"aliases": {
"Freshdesk": "Lamesya\\Freshdesk\\FreshdeskFacade"
}
}
},
"minimum-stability": "stable"
}