-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
58 lines (58 loc) · 1.68 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
{
"name": "evias/nem-php",
"description": "Composer Package for PHP (Laravel or Pure PHP), Wrapper to use the NEM blockchain REST API and SDK with NIS compatibility.",
"keywords": ["laravel", "framework", "nem", "cryptocurrency", "api", "sdk", "restful", "laravel-nem", "evias", "Gregory Saive", "nem-php", "php-nem"],
"license": "MIT",
"authors": [
{
"name": "Gregory Saive",
"email": "greg@evias.be"
},
{
"name": "Robin Pedersen"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/evias/php-keccak.git"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "5.0.33|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|^8.0",
"illuminate/support": "5.0.33|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|^8.0",
"guzzlehttp/guzzle": "5.3.1|6.*",
"mdanter/ecc": "*",
"paragonie/sodium_compat": "~1.4.0",
"christian-riesen/base32": "~1.3.1",
"kornrunner/keccak": "dev-master"
},
"require-dev": {
"mockery/mockery": "0.9.9",
"phpunit/phpunit": "^4.8|^5.0|^6.4",
"phpspec/phpspec": "~2.1",
"phpdocumentor/phpdocumentor" : "~2.8.0",
"evert/phpdoc-md" : "~0.2.0"
},
"autoload": {
"psr-4": {
"NEM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NEM\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}