-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·49 lines (49 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "someline/rest-api-client",
"description": "An elegant and smart Rest API Client with OAuth2 authentication support. Build for Laravel and Someline Starter.",
"keywords": [
"rest",
"api",
"client",
"someline-starter",
"oauth2",
"laravel"
],
"homepage": "https://github.com/someline/rest-api-client",
"license": "MIT",
"authors": [
{
"name": "Libern Lin",
"email": "libernlin@gmail.com",
"homepage": "https://www.someline.com/"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"Someline\\Rest\\": "src/Someline/Rest"
}
},
"autoload-dev": {
"psr-4": {
"Someline\\Rest\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Someline\\Rest\\RestClientServiceProvider"
]
}
}
}