<?php12return [3/*4|--------------------------------------------------------------------------5| API Rate Limits6|--------------------------------------------------------------------------7|8| Defines the rate limit for the number of requests per minute that can be9| executed against both the client and internal (application) APIs over the10| defined period (by default, 1 minute).11|12*/13'rate_limit' => [14'client_period' => 1,15'client' => env('APP_API_CLIENT_RATELIMIT', 720),1617'application_period' => 1,18'application' => env('APP_API_APPLICATION_RATELIMIT', 240),19],20];212223