-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
37 lines (37 loc) · 1000 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
35
36
37
{
"name": "consatan/weibo_image_uploader",
"description": "Weibo image uploader.",
"keywords": ["sina", "weibo", "image", "photo", "picture", "upload", "uploader"],
"homepage": "https://chopin.im/weibo_puploader",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Chopin Ngo",
"email": "[email protected]",
"homepage": "https://chopin.im"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.2",
"symfony/cache": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9.7"
},
"autoload": {
"psr-4": {
"Consatan\\Weibo\\ImageUploader\\": "src/"
},
"files": ["src/functions_include.php"]
},
"autoload-dev": {
"psr-4": {
"Consatan\\Weibo\\ImageUploader\\Tests\\": "tests/"
}
}
}