mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 17:57:23 +01:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 26b2e3561a | |||
| 60aea6798d | |||
| fac3fe3f55 | |||
| 17fac0a488 | |||
| 6abc2207b2 |
@ -4,6 +4,14 @@ 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/).
|
||||||
|
|
||||||
|
## [v0.3.19 (2020-12-27)](https://github.com/pestphp/pest/compare/v0.3.18...v0.3.19)
|
||||||
|
### Fixed
|
||||||
|
- Fix binary path in `pest:dusk` command ([#239](https://github.com/pestphp/pest/pull/239))
|
||||||
|
|
||||||
|
## [v0.3.18 (2020-12-26)](https://github.com/pestphp/pest/compare/v0.3.17...v0.3.18)
|
||||||
|
### Added
|
||||||
|
- `toBeJson()` expectation ([plugin-expectations#2](https://github.com/pestphp/pest-plugin-expectations/pull/2))
|
||||||
|
|
||||||
## [v0.3.17 (2020-12-20)](https://github.com/pestphp/pest/compare/v0.3.16...v0.3.17)
|
## [v0.3.17 (2020-12-20)](https://github.com/pestphp/pest/compare/v0.3.16...v0.3.17)
|
||||||
### Fixed
|
### Fixed
|
||||||
- Class inheritance with `depends()` ([#236](https://github.com/pestphp/pest/pull/236))
|
- Class inheritance with `depends()` ([#236](https://github.com/pestphp/pest/pull/236))
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
"nunomaduro/collision": "^5.0",
|
"nunomaduro/collision": "^5.0",
|
||||||
"pestphp/pest-plugin": "^0.3",
|
"pestphp/pest-plugin": "^0.3",
|
||||||
"pestphp/pest-plugin-coverage": "^0.3",
|
"pestphp/pest-plugin-coverage": "^0.3",
|
||||||
"pestphp/pest-plugin-expectations": "^0.3.2",
|
"pestphp/pest-plugin-expectations": "^0.3.3",
|
||||||
"pestphp/pest-plugin-init": "^0.3",
|
"pestphp/pest-plugin-init": "^0.3",
|
||||||
"phpunit/phpunit": ">= 9.3.7 <= 9.5.0"
|
"phpunit/phpunit": ">= 9.3.7 <= 9.5.0"
|
||||||
},
|
},
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-master": "0.4.x-dev"
|
"dev-master": "0.3.x-dev"
|
||||||
},
|
},
|
||||||
"pest": {
|
"pest": {
|
||||||
"plugins": [
|
"plugins": [
|
||||||
|
|||||||
@ -33,9 +33,9 @@ final class PestDuskCommand extends DuskCommand
|
|||||||
protected function binary()
|
protected function binary()
|
||||||
{
|
{
|
||||||
if ('phpdbg' === PHP_SAPI) {
|
if ('phpdbg' === PHP_SAPI) {
|
||||||
return [PHP_BINARY, '-qrr', 'vendor/bin/pest'];
|
return [PHP_BINARY, '-qrr', 'vendor/pestphp/pest/bin/pest'];
|
||||||
}
|
}
|
||||||
|
|
||||||
return [PHP_BINARY, 'vendor/bin/pest'];
|
return [PHP_BINARY, 'vendor/pestphp/pest/bin/pest'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,5 +6,5 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '0.3.17';
|
return '0.3.19';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user