-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.24 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": "citicash/blockchain-explorer",
"description": "citicash",
"keywords": [
"citicash"
],
"type": "project",
"license": [
"MIT",
"BSD-3-Clause",
"GPL-2.0",
"GPL-3.0"
],
"require": {
"php": ">= 7.2",
"nette/application": "^2.4",
"nette/bootstrap": "^2.4.2",
"nette/caching": "^2.5",
"nette/database": "^2.4",
"nette/di": "^2.4",
"nette/finder": "^2.4",
"nette/forms": "^2.4",
"nette/http": "^2.4",
"nette/mail": "^2.4",
"nette/robot-loader": "^2.4 || ^3.0",
"nette/security": "^2.4",
"nette/utils": "^2.4",
"latte/latte": "^2.4",
"tracy/tracy": "^2.4",
"guzzlehttp/guzzle": "^6.3@dev",
"ext-curl": "*",
"kdyby/redis": "^4.0@dev",
"symfony/console": "^4.3@dev",
"aws/aws-sdk-php": "^3.0@dev",
"symfony/process": "^4.3@dev",
"symfony/lock": "^4.3@dev"
},
"require-dev": {
"nette/tester": "^2.1@dev",
"mockery/mockery": "dev-master",
"phpstan/phpstan-shim": "^0.11.0@dev",
"phpstan/phpstan-strict-rules": "^0.11.0@dev",
"phpstan/phpstan-doctrine": "^0.11.0@dev",
"phpstan/phpstan-mockery": "^0.11.0@dev",
"phpstan/phpstan-nette": "^0.11.0@dev"
},
"minimum-stability": "dev",
"config": {
"platform": {
"php": "7.2"
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
}
}