add publish module

This commit is contained in:
Arno Kaimbacher 2018-08-29 17:18:15 +02:00
parent 100f6db9a6
commit ffbbc04206
93 changed files with 8150 additions and 10228 deletions

View file

@ -14,7 +14,7 @@ return [
| Supported: "file", "cookie", "database", "apc",
| "memcached", "redis", "array"
|
*/
*/
'driver' => env('SESSION_DRIVER', 'file'),
@ -27,7 +27,7 @@ return [
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
*/
'lifetime' => 60,
// 120,
@ -43,7 +43,7 @@ return [
| should be encrypted before it is stored. All encryption will be run
| automatically by Laravel and you can use the Session like normal.
|
*/
*/
'encrypt' => false,
@ -56,9 +56,9 @@ return [
| files may be stored. A default has been set for you but a different
| location may be specified. This is only needed for file sessions.
|
*/
*/
'files' => storage_path().'/framework/sessions',
'files' => storage_path() . '/framework/sessions',
/*
|--------------------------------------------------------------------------
@ -69,7 +69,7 @@ return [
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
*/
'connection' => null,
@ -82,7 +82,7 @@ return [
| should use to manage the sessions. Of course, a sensible default is
| provided for you; however, you are free to change this as needed.
|
*/
*/
'table' => 'sessions',
@ -95,7 +95,7 @@ return [
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
*/
'lottery' => [2, 100],
@ -108,7 +108,7 @@ return [
| instance by ID. The name specified here will get used every time a
| new session cookie is created by the framework for every driver.
|
*/
*/
'cookie' => 'laravel_session',
@ -121,7 +121,7 @@ return [
| be regarded as available. Typically, this will be the root path of
| your application but you are free to change this when necessary.
|
*/
*/
'path' => '/',
@ -134,7 +134,7 @@ return [
| in your application. This will determine which domains the cookie is
| available to in your application. A sensible default has been set.
|
*/
*/
'domain' => null,
@ -147,7 +147,7 @@ return [
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you if it can not be done securely.
|
*/
*/
'secure' => false,