Package Data | |
---|---|
Maintainer Username: | crynobone |
Maintainer Contact: | crynobone@gmail.com (Mior Muhammad Zaki) |
Package Create Date: | 2016-12-22 |
Package Last Update: | 2024-10-08 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-30 03:01:17 |
Package Statistics | |
---|---|
Total Downloads: | 285,983 |
Monthly Downloads: | 2,353 |
Daily Downloads: | 148 |
Total Stars: | 35 |
Total Watchers: | 4 |
Total Forks: | 3 |
Total Open Issues: | 0 |
Testbench Component is a simple package that is supposed to help you write tests for your Laravel package, especially when there is routing involved.
Laravel | Testbench Browser Kit :---------|:---------- 5.5.x | 3.5.x 5.6.x | 3.6.x 5.7.x. | 3.7.x 5.8.x | 3.8.x
To install through composer, simply put the following in your composer.json
file:
{
"require-dev": {
"orchestra/testbench-browser-kit": "^3.5"
}
}
And then run composer install
from the terminal.
Above installation can also be simplify by using the following command:
composer require --dev "orchestra/testbench-browser-kit=^3.5"
Testbench Browser Kit added Browser Kit testing support for Laravel 5.4 and above. All you need to do is to replace Orchestra\Testbench\TestCase
to Orchestra\Testbench\BrowserKit\TestCase
and you should be good to go.