Skip to content

Commit

Permalink
Merge branch 'develop' into 9.x
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Jan 23, 2025
2 parents 535fde0 + 34505cb commit 9ef267a
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG-9.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench-dusk`.

## 9.11.2

Released: 2025-01-22

### Changes

* Update `config/filesystems.php` configuration file.
* Update `config/mail.php` configuration file.
* Update `config/session.php` configuration file.

## 9.11.1

Released: 2024-12-26

### Changes

* Allow support for Testbench Core v9.9.0+.

## 9.11.0

Released: 2024-12-16
Expand Down
2 changes: 1 addition & 1 deletion 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=develop)](https://github.com/orchestral/testbench-dusk/actions?query=workflow%3Atests+branch%3Adevelop)
[![tests](https://github.com/orchestral/testbench-dusk/actions/workflows/tests.yaml/badge.svg?branch=develop)](https://github.com/orchestral/testbench-dusk/actions/workflows/tests.yaml)
[![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 Down
2 changes: 1 addition & 1 deletion laravel/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"

Expand Down
3 changes: 3 additions & 0 deletions laravel/config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
'driver' => 'local',
'root' => storage_path('app'),
'throw' => false,
'report' => false,
],

'public' => [
Expand All @@ -42,6 +43,7 @@
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
'report' => false,
],

's3' => [
Expand All @@ -54,6 +56,7 @@
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
'report' => false,
],

],
Expand Down
2 changes: 1 addition & 1 deletion laravel/config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@

'smtp' => [
'transport' => 'smtp',
'scheme' => env('MAIL_SCHEME'),
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
Expand Down
2 changes: 1 addition & 1 deletion laravel/config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
|
*/

'lifetime' => env('SESSION_LIFETIME', 120),
'lifetime' => (int) env('SESSION_LIFETIME', 120),

'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),

Expand Down
4 changes: 2 additions & 2 deletions laravel/resources/views/welcome.blade.php

Large diffs are not rendered by default.

0 comments on commit 9ef267a

Please sign in to comment.