-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (40 loc) · 918 Bytes
/
composer.json
File metadata and controls
41 lines (40 loc) · 918 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name" : "taobig/php-helper",
"description" : "A tool set for PHP projects",
"type" : "library",
"license" : "MIT",
"minimum-stability" : "stable",
"require" : {
"php" : "^7.4 || ^8.0",
"php-64bit": "^7.4 || ^8.0",
"ext-ctype":"*",
"ext-mbstring":"*",
"ext-bcmath":"*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"symfony/polyfill-php80": "^1.22",
"symfony/polyfill-php81": "^1.23",
"symfony/polyfill-php83": "^1.30"
},
"require-dev" : {
"aliyuncs/oss-sdk-php": "~2.0",
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.2",
"vimeo/psalm": "^4.4"
},
"autoload" : {
"psr-4" : {
"taobig\\helpers\\" : "src/"
},
"files": ["preload.php"]
},
"autoload-dev": {
"psr-4": {
"taobig\\tests\\helpers\\": "tests/"
}
},
"homepage" : "https://github.com/taobig/php-helper",
"support" : {
"issues" : "https://github.com/taobig/php-helper/issues"
}
}