One Hat Cyber Team
Your IP :
216.73.216.55
Server IP :
5.189.175.239
Server :
Linux panel.gemx-ai.com 5.14.0-570.19.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 4 04:00:24 EDT 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
farmersapp
/
loan.farmersapp.store
/
config
/
View File Name :
wallet.php
<?php declare(strict_types=1); use Bavix\Wallet\Internal\Assembler\AvailabilityDtoAssembler; use Bavix\Wallet\Internal\Assembler\BalanceUpdatedEventAssembler; use Bavix\Wallet\Internal\Assembler\ExtraDtoAssembler; use Bavix\Wallet\Internal\Assembler\OptionDtoAssembler; use Bavix\Wallet\Internal\Assembler\TransactionCreatedEventAssembler; use Bavix\Wallet\Internal\Assembler\TransactionDtoAssembler; use Bavix\Wallet\Internal\Assembler\TransactionQueryAssembler; use Bavix\Wallet\Internal\Assembler\TransferDtoAssembler; use Bavix\Wallet\Internal\Assembler\TransferLazyDtoAssembler; use Bavix\Wallet\Internal\Assembler\TransferQueryAssembler; use Bavix\Wallet\Internal\Events\BalanceUpdatedEvent; use Bavix\Wallet\Internal\Events\TransactionCreatedEvent; use Bavix\Wallet\Internal\Events\WalletCreatedEvent; use Bavix\Wallet\Internal\Repository\TransactionRepository; use Bavix\Wallet\Internal\Repository\TransferRepository; use Bavix\Wallet\Internal\Repository\WalletRepository; use Bavix\Wallet\Internal\Service\ClockService; use Bavix\Wallet\Internal\Service\ConnectionService; use Bavix\Wallet\Internal\Service\DatabaseService; use Bavix\Wallet\Internal\Service\DispatcherService; use Bavix\Wallet\Internal\Service\JsonService; use Bavix\Wallet\Internal\Service\LockService; use Bavix\Wallet\Internal\Service\MathService; use Bavix\Wallet\Internal\Service\StateService; use Bavix\Wallet\Internal\Service\StorageService; use Bavix\Wallet\Internal\Service\TranslatorService; use Bavix\Wallet\Internal\Service\UuidFactoryService; use Bavix\Wallet\Internal\Transform\TransactionDtoTransformer; use Bavix\Wallet\Internal\Transform\TransferDtoTransformer; use Bavix\Wallet\Services\AssistantService; use Bavix\Wallet\Services\AtmService; use Bavix\Wallet\Services\AtomicService; use Bavix\Wallet\Services\BasketService; use Bavix\Wallet\Services\BookkeeperService; use Bavix\Wallet\Services\CastService; use Bavix\Wallet\Services\ConsistencyService; use Bavix\Wallet\Services\DiscountService; use Bavix\Wallet\Services\EagerLoaderService; use Bavix\Wallet\Services\ExchangeService; use Bavix\Wallet\Services\PrepareService; use Bavix\Wallet\Services\PurchaseService; use Bavix\Wallet\Services\RegulatorService; use Bavix\Wallet\Services\TaxService; use Bavix\Wallet\Services\TransactionService; use Bavix\Wallet\Services\TransferService; use Bavix\Wallet\Services\WalletService; return [ /** * Arbitrary Precision Calculator. * * 'scale' - length of the mantissa */ 'math' => [ 'scale' => 64, ], /** * Storage of the state of the balance of wallets. */ 'cache' => [ 'driver' => env('WALLET_CACHE_DRIVER', 'array'), 'ttl' => env('WALLET_CACHE_TTL', 24 * 3600), ], /** * A system for dealing with race conditions. */ 'lock' => [ 'driver' => env('WALLET_LOCK_DRIVER', 'array'), 'seconds' => env('WALLET_LOCK_TTL', 1), ], /** * Internal services that can be overloaded. */ 'internal' => [ 'clock' => ClockService::class, 'connection' => ConnectionService::class, 'database' => DatabaseService::class, 'dispatcher' => DispatcherService::class, 'json' => JsonService::class, 'lock' => LockService::class, 'math' => MathService::class, 'state' => StateService::class, 'storage' => StorageService::class, 'translator' => TranslatorService::class, 'uuid' => UuidFactoryService::class, ], /** * Services that can be overloaded. */ 'services' => [ 'assistant' => AssistantService::class, 'atm' => AtmService::class, 'atomic' => AtomicService::class, 'basket' => BasketService::class, 'bookkeeper' => BookkeeperService::class, 'regulator' => RegulatorService::class, 'cast' => CastService::class, 'consistency' => ConsistencyService::class, 'discount' => DiscountService::class, 'eager_loader' => EagerLoaderService::class, 'exchange' => ExchangeService::class, 'prepare' => PrepareService::class, 'purchase' => PurchaseService::class, 'tax' => TaxService::class, 'transaction' => TransactionService::class, 'transfer' => TransferService::class, 'wallet' => WalletService::class, ], /** * Repositories for fetching data from the database. */ 'repositories' => [ 'transaction' => TransactionRepository::class, 'transfer' => TransferRepository::class, 'wallet' => WalletRepository::class, ], /** * Objects of transformer from DTO to array. */ 'transformers' => [ 'transaction' => TransactionDtoTransformer::class, 'transfer' => TransferDtoTransformer::class, ], /** * Builder class, needed to create DTO. */ 'assemblers' => [ 'availability' => AvailabilityDtoAssembler::class, 'balance_updated_event' => BalanceUpdatedEventAssembler::class, 'extra' => ExtraDtoAssembler::class, 'option' => OptionDtoAssembler::class, 'transaction' => TransactionDtoAssembler::class, 'transfer_lazy' => TransferLazyDtoAssembler::class, 'transfer' => TransferDtoAssembler::class, 'transaction_created_event' => TransactionCreatedEventAssembler::class, 'transaction_query' => TransactionQueryAssembler::class, 'transfer_query' => TransferQueryAssembler::class, ], /** * Package system events. */ 'events' => [ 'balance_updated' => BalanceUpdatedEvent::class, 'wallet_created' => WalletCreatedEvent::class, 'transaction_created' => TransactionCreatedEvent::class, ], /** * Base model 'transaction'. */ 'transaction' => [ 'table' => 'transactions', 'model' => App\Models\Transaction::class, ], /** * Base model 'transfer'. */ 'transfer' => [ 'table' => 'transfers', 'model' => App\Models\Transfer::class, ], /** * Base model 'wallet'. */ 'wallet' => [ 'table' => 'wallets', 'model' => App\Models\Wallet::class, 'creating' => [], 'default' => [ 'name' => 'Default Wallet', 'slug' => 'default', 'meta' => [], ], ], ];