unicorn / lumen-testbench-core
Lumen fork of orchestra/testbench-core - Testing Helper for Lumen Development
Requires
- php: >=7.2
- fzaninotto/faker: ^1.4
Requires (Dev)
- laravel/framework: ^6.4
- laravel/laravel: dev-master
- mockery/mockery: ^1.2.3
- phpunit/phpunit: ^8.3
Suggests
- laravel/framework: Required for testing (^6.4).
- mockery/mockery: Allow using Mockery for testing (^1.2.3).
- orchestra/testbench-browser-kit: Allow using legacy Laravel BrowserKit for testing (^4.0).
- orchestra/testbench-dusk: Allow using Laravel Dusk for testing (^4.0).
- phpunit/phpunit: Allow using PHPUnit for testing (^8.3).
- dev-master
- 4.x-dev
- v4.3.0
- v4.2.0
- v4.1.0
- v4.0.2
- v4.0.1
- v4.0.0
- 3.9.x-dev
- v3.9.4
- v3.9.3
- v3.9.2
- v3.9.1
- v3.9.0
- 3.8.x-dev
- v3.8.7
- v3.8.6
- v3.8.5
- v3.8.4
- v3.8.3
- v3.8.2
- v3.8.1
- v3.8.0
- 3.7.x-dev
- v3.7.9
- v3.7.8
- v3.7.7
- v3.7.6
- v3.7.5
- v3.7.4
- v3.7.3
- v3.7.2
- v3.7.1
- v3.7.0
- 3.6.x-dev
- v3.6.7
- v3.6.6
- v3.6.5
- v3.6.4
- v3.6.3
- v3.6.2
- v3.6.1
- v3.6.0
- 3.5.x-dev
- v3.5.10
- v3.5.9
- v3.5.8
- v3.5.7
- v3.5.6
- v3.5.5
- v3.5.4
- v3.5.3
- v3.5.2
- v3.5.1
- v3.5.0
- 3.4.x-dev
- v3.4.6
- v3.4.5
- v3.4.4
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- dev-dev
This package is auto-updated.
Last update: 2024-11-09 10:55:32 UTC
README
Lumen compatible fork of orchestra/testbench-core
Testing Helper for Laravel Development
Testbench Component is a simple package that has been designed to help you write tests for your Laravel package.
Version Compatibility
Usage
Testbench Core is being built to enable Laravel Framework to build and run integration tests for the framework itself. For package developers please use any of the following testbench projects:
Testbench
It loads Laravel apps and enable you to run artisan commands, migrations, factories and basic routing from within your tests.
Testbench BrowserKit
It extends Testbench and allows you to interact with views using CSS selectors (interacting with form, button, link etc) but without JavaScript being loaded.
Testbench Dusk
It extends Testbench and allows you to interact with views using CSS selectors (interacting with form, button, link etc). By loading the pages using Google Chrome it enable you to interacts with JavaScript powered content.