
* #1 - project skeleton * #1 - composer fix * #1 - add app key to phpunit config * #1 - change default session driver * #1 - add EXTERNAL_WEBSERVER_PORT variable to .env.example
15 lines
314 B
PHP
15 lines
314 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
"paths" => ["api/*", "sanctum/csrf-cookie"],
|
|
"allowed_methods" => ["*"],
|
|
"allowed_origins" => ["*"],
|
|
"allowed_origins_patterns" => [],
|
|
"allowed_headers" => ["*"],
|
|
"exposed_headers" => [],
|
|
"max_age" => 0,
|
|
"supports_credentials" => false,
|
|
];
|