forked from bavix/laravel-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
89 lines (89 loc) · 2.71 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
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
86
87
88
89
{
"name": "bavix/laravel-wallet",
"description": "Easy work with virtual wallet.",
"keywords": [
"laravel",
"credits",
"bavix",
"currency",
"laravel-wallet",
"laravel-package",
"virtual",
"wallet",
"payments"
],
"minimum-stability": "stable",
"homepage": "https://bavix.github.io/laravel-wallet/",
"license": "MIT",
"authors": [
{
"name": "Babichev Maxim",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"brick/math": "~0.8",
"doctrine/dbal": "^2.8|^3.0",
"illuminate/contracts": "^9.0",
"illuminate/database": "^9.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"brianium/paratest": "^6.4",
"cknow/laravel-money": "^6.3",
"ergebnis/phpstan-rules": "^1.0",
"infection/infection": "~0.26",
"laravel/cashier": "^13.8",
"nunomaduro/collision": "^6.2",
"orchestra/testbench": "^7.4",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12",
"symplify/easy-coding-standard": "^10.2",
"vimeo/psalm": "^4.22"
},
"suggest": {
"bavix/laravel-wallet-swap": "Addition to the laravel-wallet library for quick setting of exchange rates",
"bavix/laravel-wallet-warmup": "Addition to the laravel-wallet library for refresh balance wallets"
},
"autoload": {
"psr-4": {
"Bavix\\Wallet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bavix\\Wallet\\Test\\": "tests/"
}
},
"scripts": {
"docs": "@php -S localhost:3000 -t ./docs",
"unit":"@php vendor/bin/phpunit --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
"paraunit":"@php vendor/bin/paratest --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
"parabench":"@php ./vendor/bin/testbench package:test --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
"infect": "@php vendor/bin/infection --coverage=build --min-msi=50 -j$(nproc) --only-covering-test-cases",
"phpstan": "@php vendor/bin/phpstan analyse -vvv --debug --memory-limit 2G -l 7 src/",
"phpstan-baseline": "@php vendor/bin/phpstan analyse -vvv --debug --memory-limit 2G -l 7 src/ --generate-baseline",
"ecs": "@php vendor/bin/ecs check",
"ecs-fix": "@php vendor/bin/ecs check --fix",
"ecs-cc": "@php vendor/bin/ecs --clear-cache",
"psalm": "@php vendor/bin/psalm",
"psalm-cc": "@php vendor/bin/psalm --clear-cache",
"rector": "@php vendor/bin/rector process --dry-run",
"rector-fix": "@php vendor/bin/rector process"
},
"extra": {
"laravel": {
"providers": [
"Bavix\\Wallet\\WalletServiceProvider"
]
}
},
"config": {
"process-timeout":0,
"sort-packages": true
}
}