-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
81 lines (81 loc) · 2.08 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
{
"name": "021/laravel-wallet",
"type": "package",
"description": "Reliable and flexible wallet system for Laravel",
"keywords": [
"laravel",
"wallet",
"transactions",
"finance",
"payment",
"balance",
"payout",
"withdrawal",
"deposit",
"transfer"
],
"license": "MIT",
"authors": [
{
"name": "021",
"email": "[email protected]",
"homepage": "https://021-projects.github.io/",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"021/numeric": "^1.0.0",
"021/safely-transaction": "^1.0.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/events": "^10.0|^11.0",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"larastan/larastan": "^2.0",
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.21|^9.0|^10.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"O21\\LaravelWallet\\": "src/"
},
"files": [
"src/helpers.php",
"src/config_helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"O21\\LaravelWallet\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"pint": "pint"
},
"extra": {
"laravel": {
"providers": [
"O21\\LaravelWallet\\ServiceProvider"
],
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}