forked from batv45/laravel-balance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.8 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
{
"name": "cyberwolfstudio/laravel-balance",
"version": "1.1.0",
"description": "Maintains a history of balance movements in the eloquent models. This simple package will keep track of the balance of your models. You can increase, decrease, reset and set the balance. It is also possible to check if a model has a positive balance or no balance.",
"keywords": [
"batv45",
"cyberwolf-studio",
"laravel",
"laravel-balance",
"balance",
"balance-history",
"money"
],
"homepage": "https://github.com/cyberwolf-studio/laravel-balance",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Batuhan OK",
"email": "activ45@hotmail.com",
"role": "Developer"
},
{
"name": "CyberWolf.Studio",
"email": "hello@cyberwolf.studio",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/config": "^9.0|^10.0|^11.0",
"cknow/laravel-money": "^8.0"
},
"require-dev": {
"nunomaduro/collision": "^8.4",
"orchestra/testbench": "^9.3",
"pestphp/pest": "^2.35",
"pestphp/pest-plugin-laravel": "^2.4"
},
"autoload": {
"psr-4": {
"Batv45\\Balance\\": "src",
"Batv45\\Balance\\Tests\\": "tests",
"Workbench\\App\\": "workbench/app"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Batv45\\Balance\\BalanceServiceProvider"
]
}
}
}