Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel のバージョンを 5.8 に更新 #443

Merged
merged 54 commits into from
Sep 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
dba7934
Target Laravel 5.8
GrahamCampbell Sep 6, 2018
d046784
Update composer.json
taylorotwell Sep 6, 2018
8ce5ade
Update `RegisterController` password validation rule and associated l…
jakebathman Oct 5, 2018
19d3fdf
Update UserFactory password in line with #4794
connectkushal Oct 6, 2018
3a674c0
Update VerificationController.php
laurencei Sep 7, 2018
22c2824
add dynamo to stubs
taylorotwell Jan 10, 2019
3b8cbd1
tweak wording
taylorotwell Jan 10, 2019
ed24e61
Modify RedirectIfAuthenticated middleware to accept multiple guards
amaelftah Jan 14, 2019
bbbcad6
add env variable for mysql ssl cert
taylorotwell Jan 17, 2019
236c735
Add beanstalk queue block_for config key
Jan 17, 2019
86d8226
Hint for lenient log stacks
Propaganistas Jan 25, 2019
b35952c
adjust name of configuration value
taylorotwell Jan 28, 2019
ad7a20c
Use same version as framework
driesvints Feb 9, 2019
b441951
Use $_SERVER instead of $_ENV for phpunit.
crynobone Feb 13, 2019
0e23ffd
change default redis configuration structure
taylorotwell Feb 14, 2019
abadb86
update client
taylorotwell Feb 15, 2019
ba544fd
update config file
taylorotwell Feb 20, 2019
6c5798e
[5.8] use bigIncrements by default
ankurk91 Feb 24, 2019
128e635
Revert "[5.8] Modify RedirectIfAuthenticated middleware to accept mul…
taylorotwell Feb 25, 2019
6f4fe92
revert to old redis config
taylorotwell Feb 25, 2019
db0a7c2
add postmark token
taylorotwell Feb 26, 2019
75238cc
Add Arr and Str aliases by default
CupOfTea696 Feb 26, 2019
bcb70fa
add postmark
taylorotwell Feb 26, 2019
1e6551b
update env variable stubs
taylorotwell Dec 18, 2018
4d88242
set default region
taylorotwell Feb 26, 2019
131ba5f
add bucket to env example
taylorotwell Feb 26, 2019
ba0a447
Use correct env name for AWS region from env.example
akalongman Feb 27, 2019
605cfca
comment
taylorotwell Feb 27, 2019
6f94df4
comment out options
taylorotwell Feb 28, 2019
7cb5ad9
check if extension loaded
taylorotwell Feb 28, 2019
479ff2c
Ignore SQLite journals
Lenophie Mar 24, 2019
83b3912
Prefix redis database connection by default to mitigate multiple site…
DivineOmega Apr 4, 2019
33d7be0
Use Str class instead of helper function
DivineOmega Apr 4, 2019
41b51c9
Additional underscore on redis database prefix
DivineOmega Apr 8, 2019
2f808b6
Additional underscore on cache prefix
DivineOmega Apr 8, 2019
97bddad
Remove underscore as cache prefixes automatically have a colon append…
DivineOmega Apr 10, 2019
4e75cca
Update UserFactory.php
SjorsO Apr 14, 2019
aa6fa5a
Fix phpdoc to order by syntax convention (#5005)
stefanbauer Apr 24, 2019
4cc7e13
Update database config relating to Url addition.
mathieutu May 7, 2019
7692977
formatting
taylorotwell May 7, 2019
0727fd2
Add ends_with validation message
gomasy Sep 17, 2019
54baf74
Fix type hint for case of trusting all proxies (string) (#5025)
matthanley May 14, 2019
44aea0c
Add DYNAMODB_ENDPOINT to the cache config (#5034)
hmazter May 29, 2019
7204ef3
Added support for new redis URL property in config/database.php (#5037)
ImJustToNy May 30, 2019
ebaf7e1
use generic default db config
taylorotwell Jun 4, 2019
abf90f5
Update .gitignore (#5046)
SjorsO Jun 18, 2019
afc7f2d
Move TrustProxies to highest priority - fixes maintenance mode ip whi…
garygreen Jul 10, 2019
dc78670
update deprecated pusher option (#5058)
Gavrisimo Jul 11, 2019
887181a
Using environment variable to set redis prefix (#5062)
gpressutto5 Jul 16, 2019
a7b28a9
Remove Stripe config settings
driesvints Aug 13, 2019
19f93d3
formatting
taylorotwell Aug 13, 2019
aa7b28e
Update composer.lock
gomasy Sep 17, 2019
c6bc80b
Revert "[5.8] use bigIncrements by default"
gomasy Sep 17, 2019
8e3307e
Update laravel/telescope
gomasy Sep 17, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
Expand All @@ -30,6 +30,11 @@ MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/storage/*.key
/vendor
.env
.env.backup
.php_cs.cache
.phpunit.result.cache
Homestead.json
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected function validator(array $data): object
return \Validator::make($data, [
'name' => [ 'required', 'string', 'max:255' ],
'email' => [ 'required', 'string', 'email', 'max:255', 'unique:users' ],
'password' => [ 'required', 'string', 'min:6', 'confirmed' ],
'password' => [ 'required', 'string', 'min:8', 'confirmed' ],
'agreement' => [ 'required' ],
]);
}
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/VerificationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace App\Http\Controllers\Auth;

use Illuminate\Routing\Controller;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\VerifiesEmails;

class VerificationController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ class Kernel extends HttpKernel
* @var array
*/
protected $middleware = [
\App\Http\Middleware\TrustProxies::class,
\App\Http\Middleware\CheckForMaintenanceMode::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
\App\Http\Middleware\TrustProxies::class,
];

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/TrustProxies.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TrustProxies extends Middleware
/**
* The trusted proxies for this application.
*
* @var array
* @var array|string
*/
protected $proxies;

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/AuthServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class AuthServiceProvider extends ServiceProvider
* @var array
*/
protected $policies = [
'App\Model' => 'App\Policies\ModelPolicy',
// 'App\Model' => 'App\Policies\ModelPolicy',
];

/**
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
"google/cloud-vision": "^0.24.0",
"google/recaptcha": "^1.2",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "5.7.*",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"friendsofphp/php-cs-fixer": "^2.11",
"fzaninotto/faker": "^1.4",
"laravel/telescope": "^1.0",
"laravel/telescope": "^2.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^7.5"
},
"config": {
"optimize-autoloader": true,
Expand Down
Loading