-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.04 KB
/
composer.json
File metadata and controls
105 lines (105 loc) · 3.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "blockchain/modern-platform",
"description": "Modern blockchain platform with PoS consensus and customizable branding",
"version": "2.0.0",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Blockchain Platform Team",
"email": "team@blockchain-platform.com"
}
],
"require": {
"php": ">=8.1 <8.2",
"ext-curl": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.5",
"infosave2007/keccak": "dev-master",
"kornrunner/secp256k1": "^0.3",
"monolog/monolog": "^3.0",
"psr/log": "^3.0",
"stephenhill/base58": "^1.1",
"symfony/console": "^6.4",
"symfony/string": "^6.4",
"twig/twig": "^3.0",
"vlucas/phpdotenv": "^5.0"
},
"suggest": {
"ext-mysqli": "For MySQL database support",
"ext-pdo_mysql": "For MySQL PDO support",
"ext-gmp": "For big integer operations",
"ext-redis": "For caching and session storage"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"files": [
"compat_functions.php"
],
"psr-4": {
"Blockchain\\Core\\": "core/",
"Blockchain\\API\\": "api/",
"Blockchain\\Contracts\\": "contracts/",
"Blockchain\\Nodes\\": "nodes/",
"Blockchain\\Wallet\\": "wallet/",
"Blockchain\\Database\\": "database/",
"Blockchain\\SyncService\\": "sync-service/"
},
"classmap": [
"network_sync.php"
],
"exclude-from-classmap": [
"config/",
"tests/",
"simple_demo.php",
"simple_test.php",
"crypto-demo.php",
"sync_demo.php",
"sync-service/console.php"
]
},
"autoload-dev": {
"psr-4": {
"Blockchain\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php -r \"if (!file_exists('config/.env') && !file_exists('.env')) { if (!is_dir('config')) mkdir('config', 0755, true); copy('.env.example', 'config/.env'); }\""
],
"test": "phpunit",
"cs-fix": "php-cs-fixer fix",
"stan": "phpstan analyse",
"cs": "phpcs",
"install-dev": [
"composer install",
"php cli.php install"
],
"blockchain-init": "php cli.php blockchain init",
"node-start": "php cli.php node start",
"wallet-create": "php cli.php wallet create"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/infosave2007/keccak"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": { "php": "8.1.0" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"cli.php"
]
}