phpspider / lavalite-user-testing
Test package for test.
1.0
2016-12-11 05:31 UTC
Requires
- php: >=5.5.9
This package is auto-updated.
Last update: 2025-04-04 16:41:41 UTC
README
This is a Lavalite package that provides test management facility.
Installation
Begin by installing this package through Composer. Edit your project's composer.json
file to require test/test
.
"test/test": "dev-master"
Next, update Composer from the Terminal:
composer update
Once this operation completes execute below cammnds in command line to finalize installation.
Test\Test\Providers\TestServiceProvider::class,
And also add it to alias
'Test' => Test\Test\Facades\Test::class,
Use the below commands for publishing
Migration and seeds
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="seeds"
Configuration
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="config"
Language files
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="lang"
View files
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="views"
Public folders
php artisan vendor:publish --provider="Test\Test\Providers\TestServiceProvider" --tag="public"