File tree Expand file tree Collapse file tree 4 files changed +18
-7
lines changed Expand file tree Collapse file tree 4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ auth.json
99
1010phpunit.xml
1111.phpunit.result.cache
12+ .phpunit.cache
Original file line number Diff line number Diff line change 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 {
4040 },
4141 "config" : {
4242 "allow-plugins" : {
43-
43+ "ergebnis/composer-normalize" : true
4444 },
4545 "sort-packages" : true
4646 },
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 77use Laravel \Nova \Fields \Field ;
88use Laravel \Nova \Http \Requests \NovaRequest ;
99
10+ /** @covers \InteractionDesignFoundation\NovaUnlayerField\Unlayer */
1011final class UnlayerTest extends TestCase
1112{
1213 /** @test */
You can’t perform that action at this time.
0 commit comments