Skip to content

Commit 82a6cbe

Browse files
Added Laravel 11 support
1 parent dd8ca9a commit 82a6cbe

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/tests.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [ "8.1", "8.2", "8.3" ]
15-
laravel: [ "10.0" ]
15+
laravel: [ "10.0", "11.0" ]
1616
package_lang: [ "13.0", "14.0" ]
17+
exclude:
18+
- laravel: "11.0"
19+
php: "8.1"
20+
21+
- laravel: "11.0"
22+
package_lang: "13.0"
1723

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

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
},
6161
"require-dev": {
6262
"dragon-code/support": "^6.12",
63-
"orchestra/testbench": "^8.17",
63+
"orchestra/testbench": "^8.17 || ^9.0",
6464
"phpunit/phpunit": "^10.5.3",
6565
"symfony/var-dumper": "^6.4 || ^7.0"
6666
},

phpunit.xml

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4-
backupGlobals="false"
54
bootstrap="vendor/autoload.php"
65
colors="true"
7-
processIsolation="false"
8-
stopOnError="false"
9-
stopOnFailure="false"
106
cacheDirectory=".phpunit.cache"
11-
backupStaticProperties="false"
127
>
138
<testsuites>
149
<testsuite name="Test Suite">
15-
<directory suffix="Test.php">./tests</directory>
10+
<directory>./tests</directory>
1611
</testsuite>
1712
</testsuites>
1813
</phpunit>

0 commit comments

Comments
 (0)