-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.45 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
{
"name": "stagerightlabs/bloom",
"description": "A PHP library for communicating with the Stellar Horizon API.",
"keywords": [
"horizon",
"sdk",
"stellar",
"xlm"
],
"homepage": "https://github.com/stagerightlabs/bloom",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Ryan Durham",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php-64bit": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-sodium": "*",
"brick/math": "^0.9.3",
"myclabs/deep-copy": "^1.11",
"stagerightlabs/phpxdr": "^0.0.15"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpdoc-parser": "^1.15",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"StageRightLabs\\Bloom\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StageRightLabs\\Bloom\\Tests\\": "tests"
}
},
"scripts": {
"format": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky yes",
"phpstan": "phpstan analyze -c phpstan.neon",
"docs": "@php docs/_generate.php"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}