Skip to content

Commit

Permalink
Added Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Mar 13, 2024
1 parent dd8ca9a commit 82a6cbe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ jobs:
fail-fast: true
matrix:
php: [ "8.1", "8.2", "8.3" ]
laravel: [ "10.0" ]
laravel: [ "10.0", "11.0" ]
package_lang: [ "13.0", "14.0" ]
exclude:
- laravel: "11.0"
php: "8.1"

- laravel: "11.0"
package_lang: "13.0"

name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, Lang ${{ matrix.package_lang }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
},
"require-dev": {
"dragon-code/support": "^6.12",
"orchestra/testbench": "^8.17",
"orchestra/testbench": "^8.17 || ^9.0",
"phpunit/phpunit": "^10.5.3",
"symfony/var-dumper": "^6.4 || ^7.0"
},
Expand Down
7 changes: 1 addition & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 82a6cbe

Please sign in to comment.