Skip to content

Commit

Permalink
Add laravel/pail package to composer.json, impelment argon2id hashing. (
Browse files Browse the repository at this point in the history
#594)

* Add laravel/pail package to composer.json, impelment argon2id hashing.

* update php dependencies

---------

Signed-off-by: Vincent Auger <[email protected]>
  • Loading branch information
vincentauger authored Apr 17, 2024
1 parent 8da7722 commit b750b84
Show file tree
Hide file tree
Showing 5 changed files with 333 additions and 148 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/public/hot
/public/storage
/storage/*.key
/storage/*
/vendor
.env
.env.backup
Expand Down
44 changes: 22 additions & 22 deletions .phpstorm.meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -253,7 +253,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -503,7 +503,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -514,7 +514,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -764,7 +764,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -775,7 +775,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -1025,7 +1025,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -1036,7 +1036,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -1286,7 +1286,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -1297,7 +1297,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -1547,7 +1547,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -1558,7 +1558,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -1808,7 +1808,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -1819,7 +1819,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -2069,7 +2069,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -2080,7 +2080,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -2330,7 +2330,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -2341,7 +2341,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -2591,7 +2591,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -2602,7 +2602,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down Expand Up @@ -2852,7 +2852,7 @@
'flare.logger' => \Monolog\Logger::class,
'geoip' => \Torann\GeoIP\GeoIP::class,
'hash' => \Illuminate\Hashing\HashManager::class,
'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
'hash.driver' => \Illuminate\Hashing\Argon2IdHasher::class,
'iseed' => \Orangehill\Iseed\Iseed::class,
'log' => \Illuminate\Log\LogManager::class,
'mail.manager' => \Illuminate\Mail\MailManager::class,
Expand All @@ -2863,7 +2863,7 @@
'migrator' => \Illuminate\Database\Migrations\Migrator::class,
'pipeline' => \Illuminate\Pipeline\Pipeline::class,
'queue' => \Illuminate\Queue\QueueManager::class,
'queue.connection' => \Illuminate\Queue\SyncQueue::class,
'queue.connection' => \Laravel\Horizon\RedisQueue::class,
'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
'queue.listener' => \Illuminate\Queue\Listener::class,
'queue.worker' => \Illuminate\Queue\Worker::class,
Expand Down
Loading

0 comments on commit b750b84

Please sign in to comment.