Skip to content

Commit 71e4be8

Browse files
committed
Added laravel 11 support
1 parent f7f1004 commit 71e4be8

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: [8.1, 8.2, 8.3]
15+
php: [8.2, 8.3]
1616

1717
name: PHP ${{ matrix.php }}
1818

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^8.1",
16+
"php": "^8.2",
1717
"graham-campbell/manager": "^5.0",
1818
"hashids/hashids": "^5.0",
19-
"illuminate/contracts": "^10.0",
20-
"illuminate/support": "^10.0"
19+
"illuminate/contracts": "^11.0",
20+
"illuminate/support": "^11.0"
2121
},
2222
"require-dev": {
23-
"graham-campbell/analyzer": "^4.0",
24-
"graham-campbell/testbench": "^6.0",
25-
"mockery/mockery": "^1.5",
23+
"graham-campbell/analyzer": "^4.1",
24+
"graham-campbell/testbench": "^6.1",
25+
"mockery/mockery": "^1.6.6",
2626
"phpunit/phpunit": "^10.0"
2727
},
2828
"minimum-stability": "dev",
@@ -42,7 +42,7 @@
4242
},
4343
"extra": {
4444
"branch-alias": {
45-
"dev-master": "11.0-dev"
45+
"dev-master": "12.0-dev"
4646
},
4747
"laravel": {
4848
"aliases": {

phpunit.xml.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" cacheResult="false" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">./src</directory>
6-
</include>
7-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" cacheResult="false" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
83
<testsuites>
94
<testsuite name="Test Suite">
105
<directory suffix="Test.php">./tests</directory>
116
</testsuite>
127
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">./src</directory>
11+
</include>
12+
</source>
1313
</phpunit>

0 commit comments

Comments
 (0)