Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into 9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Mar 27, 2024
2 parents 02cb8a7 + 92927dc commit 576e249
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The Testbench Dusk Component is a simple package that is supposed to help you wr

The package was developed by [Konsulting Ltd](https://github.com/konsulting) and transferred to the Orchestra namespace where we will assist with supporting it in the future. It is in early development and feedback is appreciated.

[![tests](https://github.com/orchestral/testbench-dusk/workflows/tests/badge.svg?branch=8.x)](https://github.com/orchestral/testbench-dusk/actions?query=workflow%3Atests+branch%3A8.x)
[![tests](https://github.com/orchestral/testbench-dusk/workflows/tests/badge.svg?branch=develop)](https://github.com/orchestral/testbench-dusk/actions?query=workflow%3Atests+branch%3Adevelop)
[![Latest Stable Version](https://poser.pugx.org/orchestra/testbench-dusk/v/stable)](https://packagist.org/packages/orchestra/testbench-dusk)
[![Total Downloads](https://poser.pugx.org/orchestra/testbench-dusk/downloads)](https://packagist.org/packages/orchestra/testbench-dusk)
[![Latest Unstable Version](https://poser.pugx.org/orchestra/testbench-dusk/v/unstable)](https://packagist.org/packages/orchestra/testbench-dusk)
Expand All @@ -28,14 +28,15 @@ The package was developed by [Konsulting Ltd](https://github.com/konsulting) and
8.x | 6.x
9.x | 7.x
10.x | 8.x
11.x | 9.x

## Getting Started

Before going through the rest of this documentation, please take some time to read the following documentation:

* [Package Development for Laravel](https://laravel.com/docs/9.0/packages)
* [Package Development for Laravel](https://laravel.com/docs/packages)
* [Orchestra Testbench Documentation](https://packages.tools/testbench/getting-started/introduction.html)
* [Laravel Dusk Documentation](https://laravel.com/docs/9.0/dusk)
* [Laravel Dusk Documentation](https://laravel.com/docs/dusk)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions laravel/config/hashing.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
'verify' => true,
'verify' => env('HASH_VERIFY', true),
],

/*
Expand All @@ -48,7 +48,7 @@
'memory' => env('ARGON_MEMORY', 65536),
'threads' => env('ARGON_THREADS', 1),
'time' => env('ARGON_TIME', 4),
'verify' => true,
'verify' => env('HASH_VERIFY', true),
],

/*
Expand Down

0 comments on commit 576e249

Please sign in to comment.