-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 778 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 778 Bytes
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
{
"name": "chsergey/yii2-rest-client",
"version": "0.1.1",
"description": "REST client (AR-like model) for Yii Framework 2.0 (via GuzzleHttp)",
"keywords": ["yii2", "rest", "client", "model", "active record"],
"license": "MIT",
"authors": [
{
"name": "chsergey",
"email": "chsergey@chsergey.ru"
}
],
"support": {
"source": "https://github.com/chsergey/yii2-rest-client",
"issues": "https://github.com/chsergey/yii2-rest-client/issues"
},
"minimum-stability": "beta",
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": ">=2.0.5",
"guzzlehttp/guzzle": "^6.1"
},
"autoload": {
"psr-4": {
"chsergey\\rest\\": "src/"
}
}
}