Skip to content

Commit

Permalink
Merge pull request #25 from eXolnet/feature/laravel11-support
Browse files Browse the repository at this point in the history
build(deps): add Laravel 11 support
  • Loading branch information
xel1045 authored Mar 26, 2024
2 parents 5b35e4f + 1df6718 commit 3ea1aa3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [10.*]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
],
"require": {
"php": "^8.1",
"illuminate/database": "^10.0"
"illuminate/database": "^10.0|^11.0"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3.3",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.6.0"
},
"autoload": {
Expand Down
23 changes: 9 additions & 14 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
>
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
<php>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="DB_FOREIGN_KEYS" value="true"/>
</php>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>
4 changes: 2 additions & 2 deletions tests/Unit/Model/NodeUnorderedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exolnet\ClosureTable\Models\NodeUnordered;
use Exolnet\ClosureTable\Tests\Mocks\NodeMock;
use Exolnet\ClosureTable\Tests\Unit\UnitTest;
use Exolnet\ClosureTable\Tests\Unit\UnitTestCase;

class NodeUnorderedTest extends UnitTest
class NodeUnorderedTest extends UnitTestCase
{
/**
* @var \Exolnet\ClosureTable\Tests\Mocks\NodeMock
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/UnitTest.php → tests/Unit/UnitTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Mockery;
use PHPUnit\Framework\TestCase;

abstract class UnitTest extends TestCase
abstract class UnitTestCase extends TestCase
{
public function tearDown(): void
{
Expand Down

0 comments on commit 3ea1aa3

Please sign in to comment.