Skip to content

Commit 343108e

Browse files
committed
Bump dependencies (incl. minimal PHP version)
1 parent 9a8f87b commit 343108e

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ auth.json
99

1010
phpunit.xml
1111
.phpunit.result.cache
12+
.phpunit.cache

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "interaction-design-foundation/nova-unlayer-field",
33
"description": "A Laravel Nova field for Unlayer to compose emails and landing pages.",
4-
"license": "MIT",
54
"keywords": [
65
"laravel",
76
"nova",
87
"laravel-nova-field",
98
"html"
109
],
10+
"license": "MIT",
1111
"require": {
12-
"php": ">=8.0",
12+
"php": ">=8.1",
1313
"ext-json": "*",
14-
"laravel/nova": "^4.0"
14+
"laravel/nova": "^4.20"
1515
},
1616
"require-dev": {
17-
"orchestra/testbench": "^8.0",
18-
"phpunit/phpunit": "^9.5"
17+
"orchestra/testbench": "^8.3",
18+
"phpunit/phpunit": "^10.0"
1919
},
2020
"repositories": [
2121
{
@@ -40,7 +40,7 @@
4040
},
4141
"config": {
4242
"allow-plugins": {
43-
43+
"ergebnis/composer-normalize": true
4444
},
4545
"sort-packages": true
4646
},

phpunit.xml.dist

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
bootstrap="vendor/autoload.php"
4+
backupGlobals="false"
5+
colors="true"
6+
processIsolation="false"
7+
stopOnFailure="false"
8+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
9+
cacheDirectory=".phpunit.cache"
10+
backupStaticProperties="false"
11+
>
312
<coverage>
413
<include>
514
<directory suffix=".php">src/</directory>

tests/UnlayerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Laravel\Nova\Fields\Field;
88
use Laravel\Nova\Http\Requests\NovaRequest;
99

10+
/** @covers \InteractionDesignFoundation\NovaUnlayerField\Unlayer */
1011
final class UnlayerTest extends TestCase
1112
{
1213
/** @test */

0 commit comments

Comments
 (0)