wallet.php 721 B

12345678910111213141516171819
  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. 'add_funds_url' => env('WALLET_ADD_FUNDS_URL'),
  14. ];