diff --git a/config/cache.php b/config/cache.php index 251771724..c51ef2228 100644 --- a/config/cache.php +++ b/config/cache.php @@ -29,30 +29,30 @@ return [ 'stores' => [ 'apc' => [ - 'driver' => 'apc' + 'driver' => 'apc', ], 'array' => [ - 'driver' => 'array' + 'driver' => 'array', ], 'database' => [ 'driver' => 'database', - 'table' => 'cache', + 'table' => 'cache', 'connection' => null, ], 'file' => [ 'driver' => 'file', - 'path' => storage_path('framework/cache'), + 'path' => storage_path('framework/cache'), ], 'memcached' => [ - 'driver' => 'memcached', + 'driver' => 'memcached', 'servers' => [ [ - 'host' => '127.0.0.1', - 'port' => 11211, + 'host' => '127.0.0.1', + 'port' => 11211, 'weight' => 100, ], ], diff --git a/config/database.php b/config/database.php index a06bc7586..6ae3fdbd3 100644 --- a/config/database.php +++ b/config/database.php @@ -47,45 +47,45 @@ return [ 'connections' => [ 'sqlite' => [ - 'driver' => 'sqlite', + 'driver' => 'sqlite', 'database' => 'storage/database.sqlite', - 'prefix' => '', + 'prefix' => '', ], 'mysql' => [ - 'driver' => 'mysql', - 'engine' => 'InnoDB', - 'host' => 'localhost', - 'port' => 3306, - 'database' => 'database', - 'username' => 'root', - 'password' => '', - 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', - 'prefix' => '', + 'driver' => 'mysql', + 'engine' => 'InnoDB', + 'host' => 'localhost', + 'port' => 3306, + 'database' => 'database', + 'username' => 'root', + 'password' => '', + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', 'varcharmax' => 191, ], 'pgsql' => [ - 'driver' => 'pgsql', - 'host' => 'localhost', - 'port' => 5432, + 'driver' => 'pgsql', + 'host' => 'localhost', + 'port' => 5432, 'database' => 'database', 'username' => 'root', 'password' => '', - 'charset' => 'utf8', - 'prefix' => '', - 'schema' => 'public', + 'charset' => 'utf8', + 'prefix' => '', + 'schema' => 'public', ], 'sqlsrv' => [ - 'driver' => 'sqlsrv', - 'host' => 'localhost', - 'port' => 1433, + 'driver' => 'sqlsrv', + 'host' => 'localhost', + 'port' => 1433, 'database' => 'database', 'username' => 'root', 'password' => '', - 'prefix' => '', + 'prefix' => '', ], ], @@ -120,9 +120,9 @@ return [ 'cluster' => false, 'default' => [ - 'host' => '127.0.0.1', + 'host' => '127.0.0.1', 'password' => null, - 'port' => 6379, + 'port' => 6379, 'database' => 0, ], @@ -144,4 +144,5 @@ return [ */ 'useConfigForTesting' => false, + ]; diff --git a/config/develop.php b/config/develop.php index 2c1cbc642..8edf57721 100644 --- a/config/develop.php +++ b/config/develop.php @@ -20,7 +20,7 @@ return [ */ 'decompileBackendAssets' => false, - + /* |-------------------------------------------------------------------------- | Allow deep-level symlinks diff --git a/config/filesystems.php b/config/filesystems.php index 36d9a0dfa..ba80d27fb 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -45,25 +45,25 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => storage_path('app'), - 'url' => '/storage/app', + 'root' => storage_path('app'), + 'url' => '/storage/app', ], 's3' => [ 'driver' => 's3', - 'key' => 'your-key', + 'key' => 'your-key', 'secret' => 'your-secret', 'region' => 'your-region', 'bucket' => 'your-bucket', ], 'rackspace' => [ - 'driver' => 'rackspace', - 'username' => 'your-username', - 'key' => 'your-key', + 'driver' => 'rackspace', + 'username' => 'your-username', + 'key' => 'your-key', 'container' => 'your-container', - 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', - 'region' => 'IAD', + 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', + 'region' => 'IAD', ], ], diff --git a/config/mail.php b/config/mail.php index 4c471d568..7773efdd8 100644 --- a/config/mail.php +++ b/config/mail.php @@ -55,7 +55,10 @@ return [ | */ - 'from' => ['address' => 'noreply@domain.tld', 'name' => 'OctoberCMS'], + 'from' => [ + 'address' => 'noreply@domain.tld', + 'name' => 'OctoberCMS', + ], /* |-------------------------------------------------------------------------- diff --git a/config/queue.php b/config/queue.php index de27ab7f1..660fe0c83 100644 --- a/config/queue.php +++ b/config/queue.php @@ -44,31 +44,31 @@ return [ 'beanstalkd' => [ 'driver' => 'beanstalkd', - 'host' => 'localhost', - 'queue' => 'default', - 'ttr' => 60, + 'host' => 'localhost', + 'queue' => 'default', + 'ttr' => 60, ], 'sqs' => [ 'driver' => 'sqs', - 'key' => 'your-public-key', + 'key' => 'your-public-key', 'secret' => 'your-secret-key', - 'queue' => 'your-queue-url', + 'queue' => 'your-queue-url', 'region' => 'us-east-1', ], 'iron' => [ - 'driver' => 'iron', - 'host' => 'mq-aws-us-east-1.iron.io', - 'token' => 'your-token', + 'driver' => 'iron', + 'host' => 'mq-aws-us-east-1.iron.io', + 'token' => 'your-token', 'project' => 'your-project-id', - 'queue' => 'your-queue-name', + 'queue' => 'your-queue-name', 'encrypt' => true, ], 'redis' => [ 'driver' => 'redis', - 'queue' => 'default', + 'queue' => 'default', 'expire' => 60, ], @@ -86,7 +86,8 @@ return [ */ 'failed' => [ - 'database' => 'mysql', 'table' => 'failed_jobs', + 'database' => 'mysql', + 'table' => 'failed_jobs', ], ]; diff --git a/config/services.php b/config/services.php index d53643b03..4b12e4f92 100644 --- a/config/services.php +++ b/config/services.php @@ -39,7 +39,7 @@ return [ ], 'stripe' => [ - 'model' => 'User', + 'model' => 'User', 'secret' => '', ], diff --git a/config/session.php b/config/session.php index 8e2f8fa57..5ad876ce1 100644 --- a/config/session.php +++ b/config/session.php @@ -147,7 +147,7 @@ return [ | the HTTP protocol. You are free to modify this option if needed. | */ - + 'http_only' => true, /* diff --git a/config/testing/cms.php b/config/testing/cms.php index 8267ac3e4..209006f50 100644 --- a/config/testing/cms.php +++ b/config/testing/cms.php @@ -119,6 +119,6 @@ return [ | */ - 'enableCsrfProtection' => false + 'enableCsrfProtection' => false, ];