forked from victorycodedev/metaapi-cloud-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (44 loc) · 1.15 KB
/
composer.json
File metadata and controls
45 lines (44 loc) · 1.15 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
{
"name": "oyi77/metaapi-cloud-php-sdk",
"description": "PHP SDK for MetaApi, a professional cloud forex API",
"version": "2.1.0",
"keywords": [
"MetaApi",
"oyi77",
"php-metaapi-sdk"
],
"type": "library",
"homepage": "https://github.com/oyi77/metaapi-cloud-php-sdk",
"license": "MIT",
"support": {
"issues": "https://github.com/oyi77/metaapi-cloud-php-sdk/issues",
"source": "https://github.com/oyi77/metaapi-cloud-php-sdk"
},
"autoload": {
"psr-4": {
"Oyi77\\MetaapiCloudPhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Oyi77\\MetaapiCloudPhpSdk\\Tests\\": "tests"
}
},
"authors": [{
"name": "Oyi77",
"email": "muchammadizzuddin@gmail.com",
"homepage": "https://github.com/oyi77/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"
}
}