-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (40 loc) · 1.03 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
{
"name": "sandeepchowdary7/laratriposo",
"description": "Simple and extensible Triposo API PHP Client with Laravel Support based on Guzzle 6",
"type": "library",
"keywords": [
"triposo",
"laravel",
"client",
"api",
"php"
],
"homepage": "https://github.com/sandeepchowdary7/laratriposo",
"require": {
"php": "^7.1",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*"
},
"license": "MIT",
"authors": [
{
"name": "Sandeep",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sandeepchowdary7\\Laratriposo\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Sandeepchowdary7\\Laratriposo\\LaratriposoServiceProvider"
],
"aliases": {
"Triposo": "Sandeepchowdary7\\Laratriposo\\Facade\\LaratriposoFacade"
}
}
}
}