-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.09 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "suicore/walrus-sdk-php",
"description": "A PHP wrapper of Walrus",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dimitris Frangiadakis",
"email": "dimitris@suicore.com"
}
],
"keywords": [
"walrus",
"sui",
"sdk",
"php",
"blockchain"
],
"homepage": "https://github.com/suicore/walrus-sdk-php",
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": "^7.9",
"ext-openssl": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Suicore\\Walrus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Suicore\\Walrus\\Tests\\": "tests/"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage php ./vendor/bin/phpunit --colors=always --coverage-html tests/code_coverage_report",
"test-e2e": "XDEBUG_MODE=coverage RUN_INTEGRATION_TESTS=1 php ./vendor/bin/phpunit --colors=always --coverage-html tests/code_coverage_report",
"cs": "phpcs --standard=PSR12 src/"
},
"minimum-stability": "stable",
"prefer-stable": true
}