-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (83 loc) · 2.33 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (83 loc) · 2.33 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "AGPLv3",
"type": "project",
"require": {
"laravel/framework": "5.2.*",
"linusu/bitcoin-address-validator": "~0",
"pda/pheanstalk": "~3",
"ramsey/uuid": "~3",
"nbobtc/bitcoind-php": "1.2.*",
"tokenly/bitcoin-address-lib": "^1",
"tokenly/bitcoin-currency-lib": "^1",
"tokenly/counterparty-asset-info-cache": "^1.2",
"tokenly/bitcoin-payer": "^0.2.0",
"tokenly/counterparty-sender": "dev-master",
"tokenly/pusher-client": "dev-master",
"tokenly/token-generator": "dev-master@dev",
"tokenly/xcpd-client": "dev-master@dev",
"tokenly/laravel-event-log": "^1.1",
"phpunit/php-timer": "1.0.*",
"tokenly/xcaller-client": "dev-master",
"tokenly/laravel-blocking-beanstalkd": "dev-master",
"tokenly/consul-health-daemon": "dev-master",
"tokenly/laravel-record-lock": "dev-master",
"bitwasp/bitcoin": "^0.0.30",
"tokenly/counterparty-transaction-composer": "^1.1.2",
"tokenly/hmac-auth": "^1",
"tokenly/laravel-api-provider": "v1.0.0-rc2",
"guzzlehttp/guzzle": "~5",
"tokenly/counterparty-transaction-parser": "^1.4.1",
"tokenly/copay-client": "^0.1.2",
"tokenly/crypto-quantity": "^1.0",
"tokenly/asset-name-utils": "^0.2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5",
"mockery/mockery": "~0.9",
"satooshi/php-coveralls": "1.0.0",
"psr/log": "~1",
"doctrine/dbal": "~2.3",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0"
},
"autoload": {
"classmap": [
"database",
"tests/lib/",
"tests/TestCase.php"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"files": [
"tests/lib/test_helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "auto"
},
"minimum-stability": "dev",
"prefer-stable": true
}