Looking to hire Laravel developers? Try LaraJobs

sjunit-laravel maintained by shineyork

Description
A simplified version of the laravel framework unit test
Author
Last update
2019/07/26 15:24 (dev-master)
License
Links
Downloads
55

Comments
comments powered by Disqus

shineyork/sjunit-laravel

这里是对于框架的介绍

对于框架的 要求

Laravel >= 5.1 & PHP > 7.1.3

安装的方式

composer require "shineyork/sjunit-laravel"

配置方式

5.5手动配置laravel对于ShineYork\SJunitLaravel\Providers\SJunitServiceProvider::class服务放到config/app.php中

解释路由

<?php
Route::get('/', 'SJunitController@index');
Route::post('/', 'SJunitController@store')->name('junit.store');
?>