-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 958 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
{
"name": "blueink/snorlax",
"description": "A lightweight REST client that gives you full control of your resources",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/blueinkhq/snorlax",
"keywords": ["guzzle", "api", "php","rest", "restful"],
"version": "1.0.1",
"support": {
"issues": "https://github.com/blueinkhq/snorlax/issues",
"source": "https://github.com/blueinkhq/snorlax"
},
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "~6.1",
"monolog/monolog": "^1.21",
"kevinrob/guzzle-cache-middleware": "^1.0",
"rtheunissen/guzzle-log-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Snorlax\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "stable"
}