-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (52 loc) · 1.41 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
{
"name": "genxoft/tradebot",
"description": "Example trading bot",
"keywords": ["php", "binance", "trading", "trade-bot"],
"type": "project",
"authors": [
{
"name": "Simon Rodin",
"email": "master@genx.ru"
}
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "~8.1",
"ext-pdo": "*",
"ext-bcmath": "*",
"php-di/php-di": "^6.4",
"guzzlehttp/guzzle": "^7.0",
"doctrine/orm": "^2.12",
"doctrine/dbal": "^3.3",
"doctrine/annotations": "^1.13",
"doctrine/cache": "^2.2",
"symfony/cache": "^6.1",
"psr/log": "^3.0",
"predis/predis": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.8"
},
"autoload": {
"psr-4": {
"App\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "./test"
}
},
"scripts": {
"check": [
"@php-cs-fixer",
"@test"
],
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"test": "@php -dxdebug.mode=coverage vendor/bin/phpunit --order-by=random --colors=always --coverage-php build/coverage-unit.cov --testdox",
"migrate": "vendor/bin/doctrine orm:schema-tool:update --force"
}
}