123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- return [
-
- 'expire' => 0,
-
- 'path' => '/',
-
- 'domain' => '',
-
- 'secure' => false,
-
- 'httponly' => false,
-
- 'setcookie' => true,
-
- 'header' => [
- 'Access-Control-Allow-Origin' => '*',
- 'Access-Control-Allow-Headers' => 'Client-Userid,Authori-zation,Authorization, Content-Type, If-Match, If-Modified-Since, If-None-Match, If-Unmodified-Since, X-Requested-With, Form-type',
- 'Access-Control-Allow-Methods' => 'GET,POST,PATCH,PUT,DELETE,OPTIONS,DELETE',
- 'Access-Control-Max-Age' => '1728000',
- 'Access-Control-Allow-Credentials' => 'true',
- 'Access-Control-Expose-Headers' => 'Server'
- ],
-
- 'token_name' => 'Authori-zation',
- ];
|