-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve mink access, add php unit asserts and update deps (#3)
* Improve composer.json to be packagist ready and create tests dir * Improve README removing unneccesary config reference * fix: Mink access and kernel refresh on each scenario execution * Refactor and fix to not preserve application state on each scenario * Improve application state refresh on each scenario and documentation * chore(release): 1.0.3 * feat: Improve mink access, add php unit asserts and update deps --------- Co-authored-by: Roberto José Garcia Navarro <[email protected]>
- Loading branch information
Showing
9 changed files
with
1,915 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Roberto Garc\u00eda", | ||
"name": "Roberto Garcia", | ||
"email": "[email protected]", | ||
"role": "Owner" | ||
} | ||
|
@@ -35,19 +35,19 @@ | |
"illuminate/contracts": "^8.0|^9.0|^10.0", | ||
"illuminate/support": "^8.0|^9.0|^10.0", | ||
"symfony/http-kernel": "^6.2", | ||
"symfony/event-dispatcher": "^6.2" | ||
"symfony/event-dispatcher": "^6.2", | ||
"phpunit/phpunit": "^9.5|^10.0" | ||
}, | ||
"require-dev": { | ||
"marcocesarato/php-conventional-changelog": "^1.16" | ||
}, | ||
"scripts": { | ||
"changelog": "conventional-changelog", | ||
"release": "conventional-changelog --commit", | ||
"release:patch": "conventional-changelog --patch --commit", | ||
"release:minor": "conventional-changelog --minor --commit", | ||
"release:major": "conventional-changelog --major --commit" | ||
"release:patch": "conventional-changelog --patch", | ||
"release:minor": "conventional-changelog --minor", | ||
"release:major": "conventional-changelog --major" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"version": "1.0.3" | ||
"version": "1.0.4" | ||
} |
Oops, something went wrong.