Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
introwit committed Sep 18, 2018
1 parent 2a22d1a commit 0c9288e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Expand Up @@ -4,17 +4,11 @@ php:
- 7.1
- 7.2

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_install:
- sudo apt-get update
- travis_retry composer self-update

install:
- travis_retry composer update --prefer-source $COMPOSER_FLAGS
- travis_retry composer update --prefer-source

script:
- phpunit
Expand Down
4 changes: 4 additions & 0 deletions README.md
@@ -1,5 +1,9 @@
# View all your mailables at a single place

[![Latest Version](https://img.shields.io/github/release/JoggApp/laravel-mail-viewer.svg?style=flat-square)](https://github.com/JoggApp/laravel-mail-viewer/releases)
[![Build Status](https://travis-ci.org/JoggApp/laravel-mail-viewer.svg?branch=master)](https://travis-ci.org/JoggApp/laravel-mail-viewer)
[![Total Downloads](https://img.shields.io/packagist/dt/JoggApp/laravel-mail-viewer.svg?style=flat-square&colorB=brightgreen)](https://packagist.org/packages/JoggApp/laravel-mail-viewer)

The Design and content team members often need access to the emails your app will be sending out to the users. This is a fairly simple package that makes it possible and tries to minimize developer dependency. By using this package, you can have a dedicated route to view all your mailables at a single place. Having sharebale URLs to view the mails makes the team co-ordination more smooth.

## Installation
Expand Down
4 changes: 2 additions & 2 deletions tests/MailViewerTest.php
Expand Up @@ -10,10 +10,10 @@ public function setUp()
{
parent::setUp();

$router = $this->app['router'];

$this->packageUrl = config('mailviewer.url');

$router = $this->app['router'];

$middlewares = config('mailviewer.middlewares');

$router->get($this->packageUrl, 'JoggApp\MailViewer\Controllers\MailViewerController@index')
Expand Down

0 comments on commit 0c9288e

Please sign in to comment.