[ 'community' => [ 'default' => 60, 'uploads' => 20, ], 'cloud' => [ 'default' => 120, 'uploads' => 30, ], ], /* |-------------------------------------------------------------------------- | Token lifetime (days) |-------------------------------------------------------------------------- | | `default` pre-fills the expiry field when minting a token; `max` is the | ceiling the request validator enforces. A token is a password that | never gets rotated by habit, so an expiry is required at creation | (see ApiTokensController) and this is how long it may run for. | */ 'tokens' => [ 'default_days' => 90, 'max_days' => 365, ], /* |-------------------------------------------------------------------------- | Pagination |-------------------------------------------------------------------------- | | Cursor page size for every list endpoint. `max` caps what a caller may | ask for via ?per_page, so one client cannot turn a list call into a | full-table export. | */ 'pagination' => [ 'per_page' => 25, 'max_per_page' => 100, ], ];