-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 899 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "kadena-php/client",
"description": "PHP Client for use with the Kadena Pact API",
"license": "MIT",
"authors": [
{
"name": "Hergen Dillema",
"email": "hergen.dillema@gmail.com",
"homepage": "https://hergen.nl"
}
],
"homepage": "https://github.com/kadena-php/client",
"keywords": ["PHP", "Kadena"],
"require": {
"ext-sodium": "*",
"paragonie/halite": "^5.1",
"symfony/http-client": "^6.2",
"nesbot/carbon": "^2.64"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "~9.0",
"symplify/easy-coding-standard": "11.1.33.72"
},
"autoload": {
"psr-4": {
"Kadena\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kadena\\Tests\\": "tests"
}
}
}