From 9d8c6c1777049e9da621edfaf9b20e40a963ce1a Mon Sep 17 00:00:00 2001 From: Cyrill Kalita Date: Mon, 21 Sep 2020 10:28:34 -0500 Subject: [PATCH] Update dependencies for Laravel 8 --- composer.json | 10 +++++----- readme.md | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 8315ecc..1a88c4c 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "rsvpify/laravel-inky", "description": "Foundation Inky email templates in Laravel", - "version": "0.7.0", + "version": "0.8.0", "keywords": ["foundation", "inky", "laravel"], "license": "MIT", "authors": [ @@ -12,13 +12,13 @@ ], "require": { "incentfit/inky": "1.3.6.5", - "illuminate/support": "^5.7|^6.0|^7.0", - "illuminate/view": "^5.7|^6.0|^7.0", - "symfony/dom-crawler": "^2.7|^3.0|^4.0", + "illuminate/support": "^5.7|^6.0|^7.0|^8.0", + "illuminate/view": "^5.7|^6.0|^7.0|^8.0", + "symfony/dom-crawler": "^2.7|^3.0|^4.0|^5.0", "tijsverkoyen/css-to-inline-styles": "^2.2" }, "require-dev": { - "phpunit/phpunit": "^8.0", + "phpunit/phpunit": "^8.0|^9.0", "graham-campbell/testbench": "^5.3" }, "autoload": { diff --git a/readme.md b/readme.md index 61a5e42..c806f45 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ [![Actions Status](https://github.com/rsvpify/laravel-inky/workflows/Testing%20Laravel%20Package/badge.svg)](https://github.com/rsvpify/laravel-inky/actions) -Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel 6. +Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel 6-8. Any views with a `.inky.php` extension will be compiled with both Inky and Blade, allowing you to use both templating engines seamlessly together. CSS is automatically inlined so styles work in email clients that don't support external stylesheets. @@ -63,14 +63,14 @@ To apply CSS stylesheets to your inky.php templates, do not include any `` ``` 'stylesheets' => [ 'public/css/foundation-emails.css', - // you can add additional CSS files here to apply to your emails. + // you can add additional CSS files here to apply to your emails. ] ``` -In the above array, reference any additional CSS file(s) you want to apply to your emails. Be sure to include each file starting from the base path. +In the above array, reference any additional CSS file(s) you want to apply to your emails. Be sure to include each file starting from the base path. Here's a handy reference for CSS in emails: [CSS Support Guide for Email Clients](https://www.campaignmonitor.com/css/) ## Licence -[MIT Licence](LICENCE) \ No newline at end of file +[MIT Licence](LICENCE)