Sync with laravel
This commit is contained in:
@@ -60,7 +60,9 @@ return [
|
|||||||
'driver' => 'memcached',
|
'driver' => 'memcached',
|
||||||
'servers' => [
|
'servers' => [
|
||||||
[
|
[
|
||||||
'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100,
|
'host' => '127.0.0.1',
|
||||||
|
'port' => 11211,
|
||||||
|
'weight' => 100,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -57,11 +57,10 @@ return [
|
|||||||
'root' => storage_path().'/app',
|
'root' => storage_path().'/app',
|
||||||
],
|
],
|
||||||
|
|
||||||
'ftp' => [
|
'public' => [
|
||||||
'driver' => 'ftp',
|
'driver' => 'local',
|
||||||
'host' => 'ftp.example.com',
|
'root' => storage_path('app/public'),
|
||||||
'username' => 'your-username',
|
'visibility' => 'public',
|
||||||
'password' => 'your-password',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
's3' => [
|
's3' => [
|
||||||
@@ -72,16 +71,6 @@ return [
|
|||||||
'bucket' => 'your-bucket',
|
'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',
|
|
||||||
],
|
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -13,4 +13,8 @@
|
|||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
RewriteRule ^ index.php [L]
|
RewriteRule ^ index.php [L]
|
||||||
|
|
||||||
|
# Handle Authorization Header
|
||||||
|
RewriteCond %{HTTP:Authorization} .
|
||||||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|||||||
@@ -45,9 +45,11 @@ return [
|
|||||||
'digits_between' => 'The :attribute must be :digits digits.',
|
'digits_between' => 'The :attribute must be :digits digits.',
|
||||||
'email' => 'The :attribute must be between :min and :max digits.',
|
'email' => 'The :attribute must be between :min and :max digits.',
|
||||||
'exists' => 'The :attribute must be a valid email address.',
|
'exists' => 'The :attribute must be a valid email address.',
|
||||||
|
'distinct' => 'The :attribute field has a duplicate value.',
|
||||||
'filled' => 'The :attribute format is invalid.',
|
'filled' => 'The :attribute format is invalid.',
|
||||||
'image' => 'The :attribute must be an image.',
|
'image' => 'The :attribute must be an image.',
|
||||||
'in' => '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.',
|
'integer' => 'The selected :attribute is invalid.',
|
||||||
'ip' => 'The :attribute must be an integer.',
|
'ip' => 'The :attribute must be an integer.',
|
||||||
'json' => 'The :attribute must be a valid JSON string.',
|
'json' => 'The :attribute must be a valid JSON string.',
|
||||||
@@ -66,6 +68,7 @@ return [
|
|||||||
],
|
],
|
||||||
'not_in' => 'The :attribute must have at least :min items.',
|
'not_in' => 'The :attribute must have at least :min items.',
|
||||||
'numeric' => 'The selected :attribute is invalid.',
|
'numeric' => 'The selected :attribute is invalid.',
|
||||||
|
'present' => 'The :attribute field must be present.',
|
||||||
'regex' => 'The :attribute must be a number.',
|
'regex' => 'The :attribute must be a number.',
|
||||||
'required' => 'The :attribute format is invalid.',
|
'required' => 'The :attribute format is invalid.',
|
||||||
'required_if' => 'The :attribute field is required.',
|
'required_if' => 'The :attribute field is required.',
|
||||||
|
|||||||
2
storage/framework/.gitignore
vendored
2
storage/framework/.gitignore
vendored
@@ -1,6 +1,8 @@
|
|||||||
config.php
|
config.php
|
||||||
routes.php
|
routes.php
|
||||||
compiled.php
|
compiled.php
|
||||||
|
schedule-*
|
||||||
|
services.php
|
||||||
services.json
|
services.json
|
||||||
events.scanned.php
|
events.scanned.php
|
||||||
routes.scanned.php
|
routes.scanned.php
|
||||||
|
|||||||
Reference in New Issue
Block a user