前提・実現したいこと
現在、PHP(CakePHP3)のチュートリアルでブログを作っています。
ユーザーCMS認証機能を実装したいのですが、seedファイルをmigrateしてパスワードのハッシュ化の確認をするところで以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
エラーメッセージ Exception: Class 'Authentication\PasswordHasher\DefaultPasswordHasher' not found in [/var/www/html/app/config/Seeds/UsersSeed.php, line 45] 2021-02-03 23:58:07 Error: [Error] Class 'Authentication\PasswordHasher\DefaultPasswordHasher' not found in /var/www/html/app/config/Seeds/UsersSeed.php on line 45
該当のソースコード
php
1<?php 2 3use Migrations\AbstractSeed; 4use Authentication\PasswordHasher\DefaultPasswordHasher; 5/** 6 * Users seed. 7 */ 8class UsersSeed extends AbstractSeed 9{ 10 /** 11 * Run Method. 12 * 13 * Write your database seeder using this method. 14 * 15 * More information on writing seeds is available here: 16 * https://book.cakephp.org/phinx/0/en/seeding.html 17 * 18 * @return void 19 */ 20 public function run() 21 { 22 $data = [ 23 [ 24 'username' => 'admin', 25 'password' => $this->_setPassword('admin'), 26 'created' => '2020-02-01 10:00:00', 27 'modified' => '2020-02-01 10:00:00' 28 ],[ 29 'username' => 'yamada', 30 'password' => $this->_setPassword('yamada'), 31 'created' => '2020-02-01 10:00:00', 32 'modified' => '2020-02-01 10:00:00' 33 ] 34 ]; 35 36 $table = $this->table('users'); 37 $table->insert($data)->save(); 38 } 39 40 protected function _setPassword(string $password) : ?string 41 { 42 if (strlen($password) > 0) { 43 return (new DefaultPasswordHasher())->hash($password); 44 } 45 } 46} 47
試したこと
エラー文に/var/www/html/app/config/Seeds/UsersSeed.php on line 45
とあるのでhttps://book.cakephp.org/authentication/2/en/index.htmlを参考にしたところ
return (new DefaultPasswordHasher())->hash($password);
でそもそものcomposerがインストールできていなかったのかとと思い、改めてインストールしましたが変わらずでした。
プラグインがロードできていないのかと考えsrc/Application.phpに$this->addPlugin('Authentication');を追加してみましたがこれも特に意味はなかったです。
解決法についてご教授いただければ幸いです。
補足情報(FW/ツールのバージョンなど)
PHP 7.2.34
Dakephp3.8.13
Docker
DostgreSQL
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。