forked from bavix/laravel-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.13 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
{
"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": {
"ext-pdo": "*",
"php": "^7.3|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"doctrine/dbal": "^2.8|^3.0",
"ramsey/uuid": "^3.0|^4.0",
"brick/math": "~0.8"
},
"require-dev": {
"cknow/laravel-money": "^6.1",
"infection/infection": "~0.17",
"laravel/cashier": "^12.5",
"orchestra/testbench": "^6.4",
"phpmetrics/phpmetrics": "^v2.7",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.4",
"psalm/plugin-laravel": "^1.4",
"vimeo/psalm": "^4.1"
},
"suggest": {
"bavix/laravel-wallet-swap": "Addition to the laravel-wallet library for quick setting of exchange rates",
"bavix/laravel-wallet-vacuum": "Addition to the laravel-wallet library for quick fix race condition"
},
"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",
"infect": "@php vendor/bin/infection --coverage=build --min-msi=60 -j$(nproc)",
"metrics": "@php vendor/bin/phpmetrics --config=phpmetrics.json",
"stan": "@php vendor/bin/phpstan analyse -vvv --debug --memory-limit 2G -l 7 src/",
"psalm": "@php vendor/bin/psalm src/",
"psalm-dry": "@php vendor/bin/psalm --alter --issues=InvalidReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType --dry-run src/"
},
"extra": {
"laravel": {
"providers": [
"Bavix\\Wallet\\WalletServiceProvider"
]
}
},
"config": {
"process-timeout":0,
"sort-packages": true
}
}