wallet.php 911 B

1234567891011121314151617181920212223
  1. <?php
  2. // Copyright 2019 Hackware SpA <human@hackware.cl>
  3. // This file is part of "Hackware Web Services Wallet" and licensed under
  4. // the terms of the GNU Affero General Public License version 3, or (at your
  5. // option) a later version. You should have received a copy of this license
  6. // along with the software. If not, see <https://www.gnu.org/licenses/>.
  7. return [
  8. 'source_url' => env('WALLET_SOURCE_URL'),
  9. // Comma separated choices for Transaction::$type.
  10. 'transaction_types' => env('WALLET_TRANSACTION_TYPES'),
  11. // DateInterval::createFromDateString() string for Transaction::$due_after.
  12. 'due_after' => env('WALLET_DUE_AFTER', '1 month'),
  13. // Send remainders of due transactions this days previous to due date
  14. 'remind_due_at' => env('WALLET_REMIND_DUE', '1 day, 2 days, 3 days, 1 week'),
  15. // Uses to be a userland URL
  16. 'add_funds_url' => env('WALLET_ADD_FUNDS_URL'),
  17. ];