-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.21 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
{
"name": "webhash/node",
"description": "PHP Node for WebHash",
"license": "MIT",
"authors": [
{
"name": "WebHash"
}
],
"require": {
"php": ">=7.4",
"doctrine/annotations": "^1.13.3",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-pdo_sqlite": "*",
"ext-gmp": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"WebHash\\": "webhash/",
"WebHash\\Annotation\\": "webhash/annotation/",
"WebHash\\Controller\\": "webhash/controller/",
"WebHash\\Helper\\": "webhash/helper/",
"WebHash\\Network\\": "webhash/network/",
"WebHash\\Network\\Dtabase\\DAO\\": "webhash/network/database/dao/",
"WebHash\\Network\\Database\\": "webhash/network/database/",
"WebHash\\Network\\Database\\Migration\\": "webhash/network/database/migration/",
"WebHash\\Network\\Cryptography\\": "webhash/network/cryptography/",
"WebHash\\Network\\Cryptography\\Algorithms\\": "webhash/network/cryptography/algorithms/",
"WebHash\\Network\\Functions\\": "webhash/network/functions/",
"WebHash\\Network\\Miner\\": "webhash/network/miner/"
}
}
}