forked from tokenio/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.25 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
{
"name": "tokenio/sdk",
"description": "PHP SDK for interacting with the Token System",
"version": "2.0.7",
"keywords": [
"token",
"payment processing",
"api"
],
"homepage": "https://token.io",
"license": "MIT",
"authors": [
{
"name": "Token.io",
"homepage": "https://token.io"
}
],
"require": {
"php": ">=5.6.0",
"ext-bcmath" : "*",
"ext-json": "*",
"ext-grpc": "*",
"paragonie/sodium_compat": "1.7.0",
"paragonie/random_compat": ">=2",
"stephenhill/base58": "~1.0",
"grpc/grpc": "^1.20.0",
"google/protobuf": "^3.6.1",
"jms/serializer": "1.7.1",
"composer/composer": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"Test\\": "tests/",
"Tokenio\\": "lib/",
"Google\\": "lib/Proto/Google",
"GPBMetadata\\": "lib/Proto/GPBMetadata",
"Io\\": "lib/Proto/Io/",
"Io\\Token\\Samples\\": "samples/"
}
},
"suggest": {
"ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
"ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
}
}