-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 852 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 852 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
{
"name": "zyan/stock-api",
"description": "股票api",
"keywords": [
"股票api"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "zyan",
"email": "zyan@php127.com"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7",
"ext-json": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Zyan\\StockApi\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Zyan\\Tests\\": "./tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10|11",
"friendsofphp/php-cs-fixer": "^2.18"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always --testdox",
"check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --config=.php_cs --ansi"
}
}