Skip to content

Commit

Permalink
Add changelog.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Jan 27, 2017
1 parent 34eb7fd commit 0c70ab2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench`.

## 3.4.2

Date: 2017-01-27

### Added

* Add `Orchestra\Testbench\Traits\WithLoadMigrationsFrom` for migration with `--realpath` support.

### Changed

* Use `PHPUnit\Framework\TestCase` instead of `PHPUnit_Framework_TestCase` since we're requiring `phpunit` `v5.7.0` and above.

### Removed

* Remove `Orchestra\Database\ConsoleServiceProvider` from default `app.providers` configuration file.

## 3.4.1

Date: 2017-01-27
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Laravel Testing Helper for Packages Development

[![Join the chat at https://gitter.im/orchestral/testbench](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/orchestral/testbench?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Testbench Component is a simple package that is supposed to help you write tests for your Laravel package, especially when there is routing involved.
Testbench Component is a simple package that has been designed to help you write tests for your Laravel package, especially when there is routing involved.

[![Latest Stable Version](https://img.shields.io/github/release/orchestral/testbench.svg?style=flat-square)](https://packagist.org/packages/orchestra/testbench)
[![Total Downloads](https://img.shields.io/packagist/dt/orchestra/testbench.svg?style=flat-square)](https://packagist.org/packages/orchestra/testbench)
Expand Down Expand Up @@ -187,7 +187,7 @@ $this->artisan('migrate', ['--database' => 'testbench']);

#### Realpath Migration

In order to use a custom migrations command that support `realpath` option instead of the basic relative `path` option you need to first install the following package add include `Orchestra\Database\ConsoleServiceProvider` to your [Custom Service Provider](#custom-service-provider):
In order to use a custom migrations command that support `realpath` option instead of the basic relative `path` option you need to first install the following package and include `Orchestra\Database\ConsoleServiceProvider` to your [Custom Service Provider](#custom-service-provider):

composer require --dev "orchestra/database=~3.1"

Expand Down

0 comments on commit 0c70ab2

Please sign in to comment.