phpspider/lavalite-user-testing

Test package for test.

Maintainers

Package info

github.com/phpspider/lavalite-user-testing

pkg:composer/phpspider/lavalite-user-testing

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0 2016-12-11 05:31 UTC

This package is auto-updated.

Last update: 2026-03-04 18:27:43 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"

Usage