Skip to content

Commit

Permalink
Merge pull request #6 from cyrillkalita/patch-1
Browse files Browse the repository at this point in the history
Update dependencies for Laravel 8
  • Loading branch information
liliumdev authored Oct 13, 2020
2 parents 8e02cae + 9d8c6c1 commit 2a487db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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": {
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -63,14 +63,14 @@ To apply CSS stylesheets to your inky.php templates, do not include any `<link>`
```
'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)
[MIT Licence](LICENCE)

0 comments on commit 2a487db

Please sign in to comment.