diff --git a/config/cache.php b/config/cache.php index 7b7f67cd..72e5aa9d 100644 --- a/config/cache.php +++ b/config/cache.php @@ -60,7 +60,9 @@ return [ 'driver' => 'memcached', 'servers' => [ [ - 'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100, + 'host' => '127.0.0.1', + 'port' => 11211, + 'weight' => 100, ], ], ], diff --git a/config/filesystems.php b/config/filesystems.php index 399c3514..fb5e1521 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -57,11 +57,10 @@ return [ 'root' => storage_path().'/app', ], - 'ftp' => [ - 'driver' => 'ftp', - 'host' => 'ftp.example.com', - 'username' => 'your-username', - 'password' => 'your-password', + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'visibility' => 'public', ], 's3' => [ @@ -72,16 +71,6 @@ return [ 'bucket' => 'your-bucket', ], - 'rackspace' => [ - 'driver' => 'rackspace', - 'username' => 'your-username', - 'key' => 'your-key', - 'container' => 'your-container', - 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', - 'region' => 'IAD', - 'url_type' => 'publicURL', - ], - ], ]; diff --git a/public/.htaccess b/public/.htaccess index 8eb2dd0d..903f6392 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -13,4 +13,8 @@ RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 3f58463d..fb52c2f3 100755 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -45,9 +45,11 @@ return [ 'digits_between' => 'The :attribute must be :digits digits.', 'email' => 'The :attribute must be between :min and :max digits.', 'exists' => 'The :attribute must be a valid email address.', + 'distinct' => 'The :attribute field has a duplicate value.', 'filled' => 'The :attribute format is invalid.', 'image' => 'The :attribute must be an image.', 'in' => 'The :attribute must be an image.', + 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => 'The selected :attribute is invalid.', 'ip' => 'The :attribute must be an integer.', 'json' => 'The :attribute must be a valid JSON string.', @@ -66,6 +68,7 @@ return [ ], 'not_in' => 'The :attribute must have at least :min items.', 'numeric' => 'The selected :attribute is invalid.', + 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute must be a number.', 'required' => 'The :attribute format is invalid.', 'required_if' => 'The :attribute field is required.', diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore index 953edb7a..bb380a7f 100755 --- a/storage/framework/.gitignore +++ b/storage/framework/.gitignore @@ -1,6 +1,8 @@ config.php routes.php compiled.php +schedule-* +services.php services.json events.scanned.php routes.scanned.php