Compare commits

...

5 Commits

Author SHA1 Message Date
6616b6299b docs: update changelog 2021-03-31 16:00:01 +01:00
0bab649156 Merge pull request #284 from owenvoke/feature/update-phpunit
chore(deps): add support for PHPUnit 9.5.4
2021-03-31 15:42:50 +01:00
2de7cb4726 chore(deps): add support for PHPUnit 9.5.4 2021-03-31 15:29:58 +01:00
d2babb1331 Merge pull request #280 from pristavu/master
Add Dusk command argument --browse
2021-03-25 12:57:46 +00:00
a6cced6b63 Update PestDuskCommand.php
Add Dusk command argument --browse
2021-03-22 01:16:09 +02:00
4 changed files with 10 additions and 3 deletions

View File

@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## [v1.0.5 (2021-03-31)](https://github.com/pestphp/pest/compare/v1.0.4...v1.0.5)
### Added
- Add `--browse` option to `pest:dusk` command ([#280](https://github.com/pestphp/pest/pull/280))
- Support for PHPUnit 9.5.4 ([#284](https://github.com/pestphp/pest/pull/284))
## [v1.0.4 (2021-03-17)](https://github.com/pestphp/pest/compare/v1.0.3...v1.0.4) ## [v1.0.4 (2021-03-17)](https://github.com/pestphp/pest/compare/v1.0.3...v1.0.4)
### Added ### Added
- Support for PHPUnit 9.5.3 ([#278](https://github.com/pestphp/pest/pull/278)) - Support for PHPUnit 9.5.3 ([#278](https://github.com/pestphp/pest/pull/278))

View File

@ -23,7 +23,7 @@
"pestphp/pest-plugin-coverage": "^1.0", "pestphp/pest-plugin-coverage": "^1.0",
"pestphp/pest-plugin-expectations": "^1.0", "pestphp/pest-plugin-expectations": "^1.0",
"pestphp/pest-plugin-init": "^1.0", "pestphp/pest-plugin-init": "^1.0",
"phpunit/phpunit": ">= 9.3.7 <= 9.5.3" "phpunit/phpunit": ">= 9.3.7 <= 9.5.4"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {

View File

@ -16,7 +16,9 @@ final class PestDuskCommand extends DuskCommand
* *
* @var string * @var string
*/ */
protected $signature = 'pest:dusk {--without-tty : Disable output to TTY}'; protected $signature = 'pest:dusk
{--browse : Open a browser instead of using headless mode}
{--without-tty : Disable output to TTY}';
/** /**
* The console command description. * The console command description.

View File

@ -6,5 +6,5 @@ namespace Pest;
function version(): string function version(): string
{ {
return '1.0.4'; return '1.0.5';
} }