Skip to content

Commit 780a973

Browse files
authored
Upgrade to Laravel 9 (#7)
* Upgrade to laravel 9 * Update composer.json
1 parent 2a487db commit 780a973

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
],
1313
"require": {
1414
"incentfit/inky": "1.3.6.5",
15-
"illuminate/support": "^5.7|^6.0|^7.0|^8.0",
16-
"illuminate/view": "^5.7|^6.0|^7.0|^8.0",
15+
"illuminate/support": "^5.7|^6.0|^7.0|^8.0|^9.0",
16+
"illuminate/view": "^5.7|^6.0|^7.0|^8.0|^9.0",
1717
"symfony/dom-crawler": "^2.7|^3.0|^4.0|^5.0",
1818
"tijsverkoyen/css-to-inline-styles": "^2.2"
1919
},

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Actions Status](https://github.com/rsvpify/laravel-inky/workflows/Testing%20Laravel%20Package/badge.svg)](https://github.com/rsvpify/laravel-inky/actions)
22

3-
Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel 6-8.
3+
Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel 6-9.
44

55
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.
66

tests/AbstractTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
abstract class AbstractTestCase extends AbstractPackageTestCase
99
{
10-
protected function getServiceProviderClass($app)
10+
protected function getServiceProviderClass()
1111
{
1212
return InkyServiceProvider::class;
1313
}

tests/CompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function testCompile()
2020
->with('html')->andReturn('html');
2121

2222
$compiler->getFiles()->shouldReceive('put')->once()
23-
->with(__DIR__ . '/3150ecd5e0294534a81ae047ddac559de481d774.php', 'html');
23+
->with(__DIR__ . '/e13dbc54cb72a29f66053c494f2c456242d1fefa.php', 'html');
2424

2525
$this->assertNull($compiler->compile('path'));
2626
}

0 commit comments

Comments
 (0)