-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.79 KB
/
composer.json
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
{
"name": "syslogic/php-hms",
"description": "PHP SDK for Huawei REST API",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Martin Zeitler",
"homepage": "https://github.com/syslogic"
}],
"support": {
"docs": "https://github.com/syslogic/php-hms/README.md",
"issues": "https://github.com/syslogic/php-hms/issues",
"source": "https://github.com/syslogic/php-hms"
},
"funding": [{
"type": "github",
"url": "https://github.com/sponsors/syslogic"
}, {
"type": "paypal",
"url": "https://www.paypal.me/syslogic"
}],
"scripts": {
"coverage_linux": "export XDEBUG_MODE=coverage && vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration phpunit.xml --testsuite main",
"coverage_windows": "setlocal xdebug.mode=coverage && %cd%/vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration phpunit.xml --testsuite main",
"docs": "phpDocumentor.phar"
},
"scripts-descriptions": {
"coverage_linux": "Run PHPUnit tests with code coverage on Linux",
"coverage_windows": "Run PHPUnit tests with code coverage on Windows",
"docs": "Generate code documentation with phpDocumentor"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-curl": "*",
"phpseclib/phpseclib": "^3.0.43",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/psr7": "^2.7.0",
"psr/http-message": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.22",
"phpunit/php-code-coverage": "^9.2.32",
"jetbrains/phpstorm-attributes": "^1.2",
"monolog/monolog": "^1.27.1"
},
"autoload": {
"psr-4": {
"HMS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}