All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
6.1.0 - 2021-04-18
- Added Github Actions
- Add farsi locale; #317 #320 @hsharghi
- Added the ability to add meta data from the cart #318
- Added exceptions to phpdoc
- Reworked unit tests
- Unit tests work faster
- Fixed a bug in the calculation of the commission
6.0.4 - 2021-04-07
- Updated key "confirmed_invalid" in Arabic; #316 @omarhen
6.0.3 - 2021-01-31
- Add arabic locale; #302 @akhedrane
6.0.2 - 2020-11-28
- Added
getWalletOrFail
method.
6.0.1 - 2020-11-18
- Fixed a bug when updating the balance, refund and full write-off. #279 @vaibhavpandeyvpz
- Fixed bugs in unit tests.
6.0.0 - 2020-11-13
- Bigger and safer. There are never many tests. As always, new test cases have been added.
- Package
brick/math
is now required. - Added examples of integrations with the
cknow/laravel-money
package in unit tests. - The
Storable
interface has an additional methodfresh
to clean up all data. - Added psalm, but not used yet.
- Added phpmetrics, thanks to which it was possible to remove a lot of loops in the code.
- Added meta column in wallet, now the package is more extensible. I moved currency from the config to the meta.
- Added an icon to the documentation.
- Added full support for php 8. We are waiting for the release.
- Added
adjustment
method, it deals with balance adjustment. In automatic mode, it calculates the difference between the current amount on the balance sheet and for transactions, and if the balance does not converge, then finishes with a transaction. - Added the ability to initialize the default wallet with the required meta parameters (needed to work with currencies).
- Added method
negative
toMathable
interface.
- Now the package works exclusively with strings, there are fewer problems when working with large numbers.
- Now, to work with cryptocurrencies, it is not necessary to install
bcmath
. - JS documentation is no longer dependent on CDN, everything is collected in one bundle.
- Updated the command to refresh the balance, now without a transaction for all wallets. Use carefully.
- Currencies are now in "wallets.meta.currency", please do not use the config for these cases.
- English documentation has been slightly improved.
- Updated phpunit to support php 8.
- Removed php 7.2 support.
- Drop package
laravel/legacy-factories
. - Remove
BCMath
andMath
classes.
- Fixed a bug when withdrawing large funds from the wallet. Sometimes the number went beyond int64 and the exception fell on "negative number".
- The key in the currencies config will be removed in 7.x. Use "wallet.meta.currency".
5.5.1 - 2020-10-18
- Fixed a bug when updating the balance, refund and full write-off. #279 @vaibhavpandeyvpz
- Fixed bugs in unit tests.
5.5.0 - 2020-10-01
- Added brick/math dependency (Optional in version 5.x. If you already have a package installed, the library will switch to it automatically)
- Added more php annotations, now it's easier to work with the library.
- Updated travis. Now we check not only SQLite, but also mysql & postgres.
- Fixed memory leak in models.
- class
BCMath
. - class
Math
.
5.4.0 - 2020-09-30
- Temporarily added package (to develop) laravel/legacy-factories.
- PHP 7.3+ support, 7.2 is no longer supported.
- Formatted code using StyleCI.
- The mysql/postgres balance refresh command no longer performs a single request update.
- If you use standard laravel transactions and open it, the library will not open a new transaction. This removes a lot of errors that were sent to my email.
- Removed automatic creation of the default wallet when calling
createWallet
. #218
- Fixed migrations for unit tests (your app should not be affected).
- Fixed nested transactions in databases. This is now one transaction.
- Fixed risk in unit tests for the postgres database.
5.3.2 - 2020-08-31
- Add support laravel ~8.0
- Dependency Allowed
illuminate/database
^8.0 - Dependency Allowed
doctrine/dbal
^3.0 - Dependency Allowed
infection/infection
0.17.* - Added new unit tests
5.3.1 - 2020-08-18
- Fixed migration issue with db table prefix #195 @reedknight @cispl-shaswatad
5.3.0 - 2020-08-10
- Add
resetConfirm
,safeResetConfirm
methods (unconfirmed). - Allow default migrations to be ignored. #189 @driangonzales
5.2.1 - 2020-06-10
- Added support
laravel/cashier ^12.0
5.2.0 - 2020-04-15
- Added support
laravel/cashier ^11.0
5.1.0 - 2020-03-26
- Added support
ramsey/uuid ^4.0
- pg12 support
5.0.2 - 2020-03-22
- fix
bindTo
method (v4.1)
5.0.1 - 2020-03-19
- Added a patch from version 4.2.1 #150
5.0.0 - 2020-03-13
- add support "Arbitrary Precision Mathematics" (
ext-bcmath
) #139 #146 - add
Mathable
service (helps switch quickly from bcmath to php computing)
- add unit cases
- upgrade composer packages
- Now all casts are in the config, not in the model. If you use bcmath, then all values are reduced to a string.
- Strong typing (models, interfaces, etc.)
- all deprecated methods are removed
nesbot/carbon
is no longer needed for the library to work
4.2.2 - 2020-03-22
- fix
bindTo
method (v4.1)
4.2.1 - 2020-03-19
- Fixed wallet recalculate command #150
4.2.0 - 2020-03-08
- Add laravel 7 support
4.1.4 - 2020-03-22
- fix
bindTo
method
4.1.3 - 2020-03-20
- Added a patch from version 4.2.1 #150
4.1.2 - 2020-01-20
- add
$amountFloat
to Transaction model
4.1.1 - 2020-01-16
- upgrade composer packages
- add unit cases
4.1.0 - 2019-12-15
- Added ability to override type
4.0.1 - 2019-11-30
- Encountered error: "You are not the owner of the wallet" #129 @arjayosma
4.0.0 - 2019-10-04
- Added interface
Storeable
for creating your own wallet balance repositories. #103 - Added support for pcov, now coated unit tests work in a few seconds, not minutes.
- Allow developers to inherit classes:
Operation
,Bring
, etc.. #106 - Added personal product discounts (see
Discount
interface). - Added a separate service for working with the connection. It’s not possible to configure flexibly at the moment, wait for new releases.
- The minimum version of php 7.2.
- Old versions of the
laravel/cashier
package have been removed, now support begins with the seventh version. - New argument
Customer $customer
added togetAmountProduct
method. #117 @jlstandout - Now for
LockService
you can choose your own (separate) cache. - Personal discount information has been added to the
transfers
table. Data is not used in the library, but will be needed for the future. - New argument
Customer $customer
added togetTotal
method. #117
- Giving a gift (Santa) no longer goes into minus due to taxes. #111
- Upon receipt, the configuration is marked with default values. #117
- Fixed a bug due to which the wallet could go negative when transferring (exchanging) money, tax. #117
- A more correct balance change, a bug with a successful update in the database and an unsuccessful update of the balance (race condition) field was fixed.
- Fixed a bug with a purchase without funds and tax. When trying to pay, an exception was thrown.
- Reworked and fixed unit tests, fixed bugs.
ProxyService
is deprecated and is no longer used.WalletService::getBalance
method is deprecated, useStoreable::getBalance
.
3.3.0 - 2019-09-10
- Added the ability to easily overload the main classes #106
3.2.1 - 2019-09-10
- Fixed calculation of commission for exchange #101 @haojingliu
- Update docs #99 @abishekrsrikaanth
3.2.0 - 2019-08-16
- Race condition problem resolved #82 @kak2z7702 #22 @sidor555
- Add Code Climate service
- Add support lumen (update docs)
- Optimize code
- More unit tests, test fixes
3.1.6 - 2019-08-08
- Add support laravel cashier #87 @imhuso
3.1.5 - 2019-08-07
- Fixed math rounding (mantissa) #85 @anthoz69
3.1.4 - 2019-08-03
- Add support
barryvdh/laravel-ide-helper
- Fixed receiving
wallets.transfers
relationship @imhuso
3.1.3 - 2019-07-31
- Add support SQLite on command
RefreshBalance
- Add support laravel 6.0
- Add support php 7.4
- Add unit-test's
3.1.2 - 2019-07-30
- Allow to free buy with a negative balance
- Add parameter
$allowZero
to methodcanWithdraw
- method canWithdraw, with a negative price, almost always true
3.1.1 - 2019-07-29
- Add getCurrencyAttribute
- New unit-test's
- Add docker for php7.4 (need to develop)
- Travis CI
- Update README.md
- Deprecated interface Taxing
3.1.0 - 2019-07-27
- Add exchange method's.
- Add confirm method's.
- Add method
hasWallet
, sometimes required to verify wallet existence. - Add currency service (create usd, eur,...).
- Add
MinimalTaxable
. - Add
Taxable
. - New exception's.
- Add decimal places (replacement ratio). 317
318
- method
calculateBalance
.
- Updated dependencies (composer.json).
- New status
exchange
.
- Wallet is not always created. #63 #51
- Migration mariadb, pgsql, mysql.
- Fix documentation.
- Optimize code, fasted 1.1x.
- class
Taxing
.
- The ability to change the ratio
coefficient
. - Removed private and protected methods, the traits turned out to be more clean.
3.0.4 - 2019-07-22
- fixed PostgresSQL 11
3.0.3 - 2019-07-06
- Fixed creating a wallet with default slug. #57 @kak2z7702
3.0.2 - 2019-06-18
- Add support laravel 5.9 (new name 6.0)
- Add support mariadb: 5.5, 10.0+
- Add support percona: 5.6
- Add support mysql: 5.6
3.0.1 - 2019-06-17
- The shortened syntax for getting the balance did not work.
3.0.0 - 2019-05-25
- Add service
CommonService
- Add service
ProxyService
- Add service
WalletService
- Add object Bring (simple transfer)
- Add object Operation (simple transaction)
- Add feature Cart (multi pay + quantity)
- Add method
payFreeCart
- Add method
safePayCart
- Add method
payCart
- Add method
forcePayCart
- Add method
safeRefundCart
- Add method
refundCart
- Add method
forceRefundCart
- Add method
safeRefundGiftCart
- Add method
refundGiftCart
- Add method
forceRefundGiftCart
- Add method
getUniqueId
to InterfaceProduct
- applied fixes from cs-fixer
- change singleton path
bavix.wallet::transaction
toBavix\Wallet\Models\Transaction::class
- change singleton path
bavix.wallet::transfer
toBavix\Wallet\Models\Transfer::class
- change singleton path
bavix.wallet::wallet
toBavix\Wallet\Models\Wallet::class
- change method
canBuy
. Added parameter$quantity
- method
calculateBalance
. - method
holderTransfers
. - attribute
$status
from Interfaces/Wallet::transfer - attribute
$status
from Interfaces/Wallet::safeTransfer - attribute
$status
from Interfaces/Wallet::forceTransfer - attribute
$status
from Interfaces/WalletFloat::transfer - attribute
$status
from Interfaces/WalletFloat::safeTransfer - attribute
$status
from Interfaces/WalletFloat::forceTransfer - class
Tax
- class
WalletProxy
- protected method
checkAmount
- protected method
assemble
- protected method
change
- protected method
holderTransfers
- protected method
addBalance
2.4.1 - 2019-05-17
- Readme.md
- lumen framework
- new tests have been added.
- method
refreshBalance
.
- method
calculateBalance
. - method
holderTransfers
.
2.4.0 - 2019-05-14
- Add zh-CN trans. @MoeCasts
- Add ru trans
- Add method
holderTransfers
- optimize
getWallet
method - optimize relations wallets
- fixed getting a default wallet @MoeCasts
- trait CanBePaid (deprecated ^2.2)
- trait CanBePaidFloat (deprecated ^2.2)
2.3.2 - 2019-05-13
- patch migrations
2.3.1 - 2019-05-13
- Added require dependency doctrine/dbal in composer.json
2.3.0 - 2019-05-13
- Add support Themosis Framework
- In all the methods of translations have added the status of the transfer.
- correction of errors during installation is not correct status.
2.2.2 - 2019-05-12
- fixed fee counting. see issue #25
2.2.1 - 2019-02-17
- Add support Laravel 5.8.
2.2.0 - 2018-12-25
- Add trait
CanPay
. - Add trait
CanPayFloat
.
- Trait
CanBePaid
. - Trait
CanBePaidFloat
.
2.1.0 - 2018-11-22
- File changelog.
- Add
HasGift
trait. - Added status column to the
transfers
table. - Added status_last column to the
transfers
table. - Added methods: refundGift, safeRefundGift, forceRefundGift
- A new argument is added to the "old
refund
" methods$gifts
.
- Due to the addition of new functionality
gifts
there are possible problems that need to be addressed. Namely, when returning the goods, the funds would not be returned to the person who paid for it. Which would raise a lot of questions.
- Composer.json: add new keywords.
- the $gifts argument (Boolean type) is added to the paid, refund, safeRefund, forceRefund method's.
- Removed column
refund
fromtransfers
table. Now it has been replaced by the status column.
2.0.1 - 2018-11-21
- add method getAvailableBalance. public getAvailableBalance(): int.
2.0.0 - 2018-11-21
- table
wallets
. - add
wallet_id
to tabletransactions
and foreign key's. - add
fee
to tabletransfers
. - add localization's.
- add Taxing interface.
- add WalletFloat interface.
- add const TYPE_DEPOSIT, TYPE_WITHDRAW.
- add Wallet model.
- add working with fractional (float) numbers.
- add method calculateBalance.
- add method payFree. public payFree(Product $product): Transfer.
- add CanBePaidFloat trait.
- Added the ability to collect Commission when withdrawing funds in transfers.
- Added the ability to work with multiple wallets.
- Added a class that stores user balance. To avoid any problems.
- add HasWalletFloat trait.
- add HasWallets trait.
- Add $type argument before $amount. protected change(string $type, int $amount, ?array $meta, bool $confirmed): Transaction.
- Due to the addition of the ability to buy for free, there was a bug in which we returned the full cost.
- Due to the addition of the ability to work with many wallets, there were bugs with payments. When the user bought the goods and the goods were assigned to the wallet, not to the user. This change of method: change, transactions, transfers, wallet, etc.
1.2.3 - 2018-11-11
- readme: Added new features.
- Composer.json: add new keywords.
1.2.2 - 2018-11-10
- method public forcePay(Product $product): Transfer.
- method public forceRefund(Product $product): bool.
- the
$force
parameter was added to thepay
method. public pay(Product $product, bool $force = false): Transfer. - the
$force
parameter was added to thesafePay
method. public safePay(Product $product, bool $force = false): ?Transfer. - the
$force
parameter was added to thecanBuy
method. public canBuy(Customer $customer, bool $force = false): bool. - the
$force
parameter was added to therefund
method. public refund(Product $product, bool $force = false): bool. - the
$force
parameter was added to thesafeRefund
method. public safeRefund(Product $product, bool $force = false): bool.
- Fixed magic method. He accounted for unconfirmed transactions.
1.2.1 - 2018-11-09
- check for php 7.3
- support for laravel 5.5.
1.2.0 - 2018-11-09
- phpunit to the project.
1.1.2 - 2018-11-08
- Fixed "balance" method. He counted the amount along with the unconfirmed transactions.
1.1.1 - 2018-11-08
- Update readme.
- New indexes have names for quick removal.
- Fixed
down
migration methodtransfers
.
1.1.0 - 2018-11-08
- Added index for fields in "transfers" table: ['from_type', 'from_id', 'refund'].
- Added index for fields in "transfers" table: ['to_type', 'to_id', 'refund'].
- In the table "transactions" added to the type index.
- Exception ProductEnded
- Method public paid(Product $product): ?Transfer.
- Method public canBuy(Customer $customer): bool.
- Static balance caching. Also the description for what it is necessary.
- In the table "transactions" is deleted the index of the field "uuid" and added a unique index.
- In the table "transfers" is deleted the index of the field "uuid" and added a unique index.
- Method
pay
began to check the possibility of buying.
- public resetBalance(): void
1.0.0 - 2018-11-07
- Added
refund
field totransfers
table.
- Updated the
refund
method. The operation is now executed in the transaction and updates the newrefund
field.
- public resetBalance(): void
0.0.1 - 2018-11-07
- written README.
- Project configuration file created.
- Migration 2018_11_06_222923_create_transactions_table.
- Migration 2018_11_07_192923_create_transfers_table.
HasWallet
trait andWallet
interface.- methods:
- private checkAmount(int $amount): void
- public forceWithdraw(int $amount, ?array $meta = null, bool $confirmed = true): Transaction
- public deposit(int $amount, ?array $meta = null, bool $confirmed = true): Transaction
- public withdraw(int $amount, ?array $meta = null, bool $confirmed = true): Transaction
- public canWithdraw(int $amount): bool
- public transfer(Wallet $wallet, int $amount, ?array $meta = null): Transfer
- public safeTransfer(Wallet $wallet, int $amount, ?array $meta = null): ?Transfer
- public forceTransfer(Wallet $wallet, int $amount, ?array $meta = null): Transfer
- protected assemble(Wallet $wallet, Transaction $withdraw, Transaction $deposit): Transfer
- protected change(int $amount, ?array $meta, bool $confirmed): Transaction
- public resetBalance(): void
- relations:
- public transactions(): MorphMany
- public transfers(): MorphMany
- magic property
- public getBalanceAttribute(): int
- methods:
CanBePaid
trait andProduct
,Costomer
interface's- methods:
- public pay(Product $product): Transfer
- public safePay(Product $product): ?Transfer
- public refund(Product $product): bool
- public safeRefund(Product $product): bool
- methods:
- Exceptions: AmountInvalid, BalanceIsEmpty.
- Models: Transfer, Transaction.