diff --git a/ja/tutorials-and-examples/blog-auth-example/auth.rst b/ja/tutorials-and-examples/blog-auth-example/auth.rst index 0883fac5d3..ee5df6969c 100644 --- a/ja/tutorials-and-examples/blog-auth-example/auth.rst +++ b/ja/tutorials-and-examples/blog-auth-example/auth.rst @@ -121,7 +121,7 @@ composerを使ってAuthenticationプラグインをインストールします .. code-block:: console - composer require "cakephp/authentication:^2.0" + composer require "cakephp/authentication:^3.0" パスワードハッシュの追加 @@ -134,7 +134,7 @@ composerを使ってAuthenticationプラグインをインストールします // src/Model/Entity/User.php namespace App\Model\Entity; - use Cake\Auth\DefaultPasswordHasher; + use Authentication\PasswordHasher\DefaultPasswordHasher; use Cake\ORM\Entity; class User extends Entity