12345678910111213141516171819 |
- <?php
- // Copyright 2019 Hackware SpA <human@hackware.cl>
- // This file is part of "Hackware Web Services Wallet" and licensed under
- // the terms of the GNU Affero General Public License version 3, or (at your
- // option) a later version. You should have received a copy of this license
- // along with the software. If not, see <https://www.gnu.org/licenses/>.
- return [
- 'source_url' => env('WALLET_SOURCE_URL'),
- // Comma separated choices for Transaction::$type.
- 'transaction_types' => env('WALLET_TRANSACTION_TYPES'),
- // DateInterval::createFromDateString() string for Transaction::$due_after.
- 'due_after' => env('WALLET_DUE_AFTER', '1 month'),
- 'add_funds_url' => env('WALLET_ADD_FUNDS_URL'),
- ];
|