Skip to content

Commit

Permalink
more whmcs defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenefvdm committed Oct 20, 2024
1 parent b6a71bd commit 1fee24e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ WHMCS_API_SECRET=456
WHMCS_DEBUG=false

# The number of API results to return per call
WHMCS_LIMITNUM=100
WHMCS_LIMITNUM=10000

#WHMCS_DEFAULT_PAYMENT_METHOD=mailin

# Optional. Only used if you need to connect to two different WHMCS servers.
#WHMCS_URL2=https://whmcs2.test
Expand Down
3 changes: 2 additions & 1 deletion config/whmcs.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
'admin_url' => env('WHMCS_ADMIN_URL'),
'api_identifier' => env('WHMCS_API_IDENTIFIER'),
'api_secret' => env('WHMCS_API_SECRET'),
'limitnum' => env('WHMCS_LIMITNUM', 10000),
'debug' => env('WHMCS_DEBUG'),
'limitnum' => env('WHMCS_LIMITNUM', 10000),
'default_payment_method' => env('WHMCS_DEFAULT_PAYMENT_METHOD', 'mailin'),
];

0 comments on commit 1fee24e

Please sign in to comment.