-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (39 loc) · 1.02 KB
/
composer.json
File metadata and controls
40 lines (39 loc) · 1.02 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
{
"name": "victorycodedev/metaapi-cloud-php-sdk",
"description": "PHP SDK for MetaApi, a professional cloud forex API",
"keywords": [
"MetaApi",
"victorycodedev",
"php-metaapi-sdk"
],
"type": "library",
"homepage": "https://github.com/victorycodedev/metaapi-cloud-php-sdk",
"license": "MIT",
"autoload": {
"psr-4": {
"Victorycodedev\\MetaapiCloudPhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Victorycodedev\\MetaapiCloudPhpSdk\\Tests\\": "tests"
}
},
"authors": [{
"name": "Efekpogua Victory",
"email": "victrinhoj@gmail.com",
"homepage": "https://github.com/victorycodedev/metaapi-cloud-php-sdk",
"role": "Developer"
}],
"minimum-stability": "stable",
"require": {
"php": "^8.1|^8.2",
"guzzlehttp/guzzle": "^7.0"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
}
}