-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.41 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name" : "soneso/stellar-php-sdk",
"description" : "Stellar PHP SDK for the Stellar Network",
"autoload" : {
"psr-4" : {
"Soneso\\StellarSDK\\" : "Soneso/StellarSDK/"
}
},
"autoload-dev" : {
"psr-4" : {
"Soneso\\StellarSDKTests\\" : "Soneso/StellarSDKTests/",
"Soneso\\StellarSDKTests\\Unit\\" : "Soneso/StellarSDKTests/Unit/",
"Soneso\\StellarSDKTests\\Integration\\" : "Soneso/StellarSDKTests/Integration/"
}
},
"require" : {
"php": ">=8.0",
"guzzlehttp/guzzle" : "^7.3",
"christian-riesen/base32" : "~1.6",
"phpseclib/phpseclib" : "^3.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"yosymfony/toml" : "~1.0",
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-sodium": "*"
},
"suggest": {
"ext-pcntl": "Required for process forking in streaming integration tests (Unix only)"
},
"license" : "Apache-2.0",
"authors" : [{
"name" : "Christian Rogobete",
"email" : "c.rogobete@soneso.com"
}
],
"require-dev" : {
"phpunit/phpunit" : "~10.0",
"phpdocumentor/phpdocumentor": "^3.9",
"league/uri": "7.5.1"
},
"scripts": {
"test": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:all": "phpunit --testsuite all",
"test:coverage": "XDEBUG_MODE=coverage phpunit --testsuite unit --coverage-clover coverage/clover.xml --coverage-html coverage/html",
"docs": "phpdoc run --config=phpdoc.xml",
"docs:clean": "rm -rf docs/api .phpdoc"
}
}