-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
69 lines (69 loc) · 1.95 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
64
65
66
67
68
69
{
"name": "attestto/solana-php-sdk",
"version": "0.6.1",
"description": "Solana PHP SDK for interacting with the Solana blockchain",
"keywords": [
"attestto",
"solana-php-sdk",
"blockchain",
"solana",
"sol",
"sdk",
"php"
],
"homepage": "https://github.com/Attestto-com/solana-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Matt Stauffer",
"homepage": "https://packagist.org/packages/tightenco/solana-php-sdk",
"role": "Original Creator Developer [Legacy] "
},
{
"name": "Zach Vander Velden",
"homepage": "https://github.com/exzachlyvv",
"role": "Developer - Metadata [Legacy]"
},
{
"name": "Eduardo Chongkan",
"email": "[email protected]",
"homepage": "https://github.com/chongkan",
"role": "Developer - [Current Maintainer]"
}
],
"require": {
"php": "~8.2",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.3",
"paragonie/sodium_compat": "^1.17",
"stephenhill/base58": "^1.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^9.0",
"phpunit/php-code-coverage": "^10.0",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.5",
"tightenco/tlint": "*"
},
"autoload": {
"psr-4": {
"Attestto\\SolanaPhpSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Attestto\\SolanaPhpSdk\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests --coverage-clover=coverage.xml --coverage-filter src/",
"format": "vendor/bin/php-cs-fixer fix --allow-risk=yes"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}