-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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": "ihipop/taobao-top",
"type": "library",
"description": "淘宝开放平台 SDK for php7+, Taobao top SDK for PHP7,协程兼容",
"keywords": [
"taobao",
"top",
"sdk",
"api",
"协程"
],
"homepage": "https://github.com/ihipop/taobao-top",
"license": "LGPL-3.0+",
"authors": [
{
"name": "ihipop",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"guzzlehttp/psr7": "^1.4",
"psr/simple-cache": "^1.0",
"psr/log": "^1.0",
"ihipop/psr-null-cache": "^1.0",
"pimple/pimple": "~3.2"
},
"suggest": {
"guzzlehttp/guzzle": "经典的兼容PSR7的HTTP客户端, composer require 'guzzlehttp/guzzle:^6.3'",
"swlib/saber": "Swoole下支持协程的兼容PSR7的HTTP客户端, composer require 'swlib/saber:^1.0'",
"symfony/cache": "兼容PSR16的Cache实现, composer require 'symfony/cache:~4.1'"
},
"autoload": {
"psr-4": {
"ihipop\\TaobaoTop\\": "src/"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3"
}
}