2017 © Pedro Peláez
 

library vest

Valorin's Test Suite Artisan Command for Laravel 4.

image

valorin/vest

Valorin's Test Suite Artisan Command for Laravel 4.

  • Thursday, February 5, 2015
  • by valorin
  • Repository
  • 1 Watchers
  • 0 Stars
  • 547 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Vest

Valorin's Test Suite Artisan Command for Laravel 4., (*1)

IMPORTANT: Vest does not support Laravel 5, and I don't think there is enough interest or benefit in it for me to do so., (*2)

Vest is a simple package I wrote to allow me to re-use my Laravel 4 test suite across all of my projects without needing to worry about keeping it in sync., (*3)

I've made very little effort to make it massively customizable, since it's designed by me, for me. If it doesn't work for you, either write your own or submit a pull request with changes and we can discuss your needs :-), (*4)

Installation

Add the package to your application with composer:, (*5)

composer require valorin/vest

Add the VestServiceProvider service provider to the providers list in ./app/config/app.php:, (*6)

'providers' => array(
    ...
    'Valorin\Vest\VestServiceProvider',
),

Publish the default configuration:, (*7)

./artisan config:publish valorin/vest

Edit the configuration file at:, (*8)

config/packages/valorin/vest/config.php

Usage

Run the vest command in the testing environment:, (*9)

./artisan --env=testing vest

Version History

  • v1.2.0
    • Disabled default configuration to support config merging changes.
    • Added in --quiet option to mute extra outputs.
    • Laravel 5 support.
  • v1.1.0
    • Removed legacy 'createdb' command.
    • Supporting Laravel 5
  • v1.0.0
    • Initial Release

The Versions