-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.1 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.1 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wioex/php-sdk",
"description": "Official PHP SDK for WioEX Financial Data API - Professional client library for stocks, trading signals, news, currency, and financial market data",
"type": "library",
"license": "MIT",
"keywords": [
"wioex",
"stocks",
"trading-signals",
"financial",
"api",
"sdk",
"market-data",
"currency",
"news",
"trading"
],
"authors": [
{
"name": "WioEX Team",
"email": "api-support@wioex.com",
"homepage": "https://wioex.com"
}
],
"homepage": "https://github.com/wioex/php-sdk",
"support": {
"email": "api-support@wioex.com",
"docs": "https://docs.wioex.com",
"issues": "https://github.com/wioex/php-sdk/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.20",
"psalm/plugin-phpunit": "^0.18"
},
"autoload": {
"psr-4": {
"Wioex\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wioex\\SDK\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src --level=9 --memory-limit=512M",
"psalm": "psalm --show-info=true",
"cs:check": "phpcs --standard=PSR12 src examples",
"cs:fix": "phpcbf --standard=PSR12 src examples",
"quality": [
"@cs:check",
"@phpstan",
"@psalm"
],
"quality:fix": [
"@cs:fix",
"@phpstan",
"@psalm"
]
}
}