Skip to content
Merged
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions ja/tutorials-and-examples/blog-auth-example/auth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ composerを使ってAuthenticationプラグインをインストールします

.. code-block:: console

composer require "cakephp/authentication:^2.0"
composer require "cakephp/authentication:^3.0"


パスワードハッシュの追加
Expand All @@ -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
Expand Down