Skip to content

Commit 2c60232

Browse files
authored
Merge pull request #11 from fibis/update-dependencies
deps: update dependencies and fix some namespaces
2 parents e838292 + 8c5b0bc commit 2c60232

File tree

4 files changed

+16
-25
lines changed

4 files changed

+16
-25
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"illuminate/view": "^6.0|^7.0|^8.0",
1616
"symfony/css-selector": "^4.0|^5.0",
1717
"symfony/dom-crawler": "^4.0|^5.0",
18-
"pelago/emogrifier": "^5.0"
18+
"pelago/emogrifier": "^6.0"
1919
},
2020
"require-dev": {
2121
"phpunit/phpunit": "^9.0",

phpunit.xml.dist

+12-21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnError="false"
11-
stopOnFailure="false">
12-
<testsuites>
13-
<testsuite name="Laravel Inky Test Suite">
14-
<directory suffix="Test.php">./tests</directory>
15-
</testsuite>
16-
</testsuites>
17-
<filter>
18-
<whitelist processUncoveredFilesFromWhitelist="true">
19-
<directory suffix=".php">./src</directory>
20-
</whitelist>
21-
</filter>
22-
</phpunit>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="Laravel Inky Test Suite">
10+
<directory suffix="Test.php">./tests</directory>
11+
</testsuite>
12+
</testsuites>
13+
</phpunit>

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ composer require fibis/laravel-inky
1212
Once installed, you'll need to register the service provider. Open `config/app.php` and add to the `providers` key:
1313

1414
```
15-
Petecoop\LaravelInky\InkyServiceProvider::class
15+
fibis\LaravelInky\InkyServiceProvider::class
1616
```
1717

1818
## Usage

src/InkyCompiler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Illuminate\View\Compilers\Compiler;
66
use Illuminate\View\Compilers\CompilerInterface;
77
use Illuminate\Filesystem\Filesystem;
8-
use Hampe\Inky\Inky;
8+
use Frogbob\InkyPHP\InkyPHP;
99

1010
class InkyCompiler extends Compiler implements CompilerInterface
1111
{
@@ -17,7 +17,7 @@ public function __construct(Compiler $blade, Filesystem $files, $cachePath)
1717
{
1818
parent::__construct($files, $cachePath);
1919
$this->blade = $blade;
20-
$this->inky = new Inky();
20+
$this->inky = new InkyPHP();
2121
}
2222

2323
public function compile($path = null)

0 commit comments

Comments
 (0)