qiuqiu1999 / junit-laravel
A simplified version of the laravel framework unit test
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/qiuqiu1999/junit-laravel
This package is auto-updated.
Last update: 2025-12-29 03:39:51 UTC
README
对于框架的要求
Laravel >= 5.1 & PHP >= 7.1.3
安装方式
composer require "qiuqiu1999/junit-laravel"
配置方式
在config/app.php中进行服务注册
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => [
... ,
QiuQiu1999\JunitLaravel\Providers\JunitServiceProvider::class
],
路由
Route::get('/', 'JunitController@index'); // 测试主页
Route::post('/', 'JunitController@store')->name('junit.store'); // 提交
License
MIT