This repository has been archived by the owner on May 1, 2024. It is now read-only.
generated from tighten/php-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
63 lines (63 loc) · 1.55 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": "tightenco/solana-php-sdk",
"description": "Solana PHP SDK",
"keywords": [
"tightenco",
"solana-php-sdk",
"blockchain",
"solana",
"sol",
"sdk",
"php"
],
"homepage": "https://github.com/tighten/solana-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Matt Stauffer",
"email": "[email protected]",
"homepage": "https://tighten.co",
"role": "Developer"
},
{
"name": "Zach Vander Velden",
"email": "[email protected]",
"homepage": "https://zachvv.me",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ~8.0",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.3",
"illuminate/http": "~8.0 || ~9.0",
"illuminate/support": "^8.0 || ~9.0",
"paragonie/sodium_compat": "^1.17",
"stephenhill/base58": "^1.1"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"tightenco/tlint": "^5.0"
},
"autoload": {
"psr-4": {
"Tighten\\SolanaPhpSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tighten\\SolanaPhpSdk\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}