Skip to content

Commit 22177cc

Browse files
authored
[2.x] Supports Laravel 12 (#185)
* Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * Update phpunit.xml.dist --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 9f5dde0 commit 22177cc

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

.github/workflows/tests.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
20-
laravel: [6, 7, 8, 9, 10, 11]
20+
laravel: [6, 7, 8, 9, 10, 11, 12]
2121
include:
2222
- php: 8.4
2323
laravel: 11
@@ -30,28 +30,38 @@ jobs:
3030
laravel: 10
3131
- php: 7.2
3232
laravel: 11
33+
- php: 7.2
34+
laravel: 12
3335
- php: 7.3
3436
laravel: 9
3537
- php: 7.3
3638
laravel: 10
3739
- php: 7.3
3840
laravel: 11
41+
- php: 7.3
42+
laravel: 12
3943
- php: 7.4
4044
laravel: 9
4145
- php: 7.4
4246
laravel: 10
4347
- php: 7.4
4448
laravel: 11
49+
- php: 7.4
50+
laravel: 12
4551
- php: '8.0'
4652
laravel: 10
4753
- php: '8.0'
4854
laravel: 11
55+
- php: '8.0'
56+
laravel: 12
4957
- php: 8.1
5058
laravel: 6
5159
- php: 8.1
5260
laravel: 7
5361
- php: 8.1
5462
laravel: 11
63+
- php: 8.1
64+
laravel: 12
5565
- php: 8.2
5666
laravel: 6
5767
- php: 8.2
@@ -87,4 +97,4 @@ jobs:
8797
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}"
8898
8999
- name: Execute tests
90-
run: vendor/bin/phpunit --verbose
100+
run: vendor/bin/phpunit

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
],
1212
"require": {
1313
"php": "^7.2.5|^8.0",
14-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
15-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
16-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
14+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
15+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
16+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
1717
"psy/psysh": "^0.11.1|^0.12.0",
1818
"symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "~1.3.3|^1.4.2",
2222
"phpstan/phpstan": "^1.10",
23-
"phpunit/phpunit": "^8.5.8|^9.3.3"
23+
"phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
2424
},
2525
"suggest": {
26-
"illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
26+
"illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
2727
},
2828
"autoload": {
2929
"psr-4": {

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
>
1313
<testsuites>
1414
<testsuite name="Laravel Tinker Test Suite">
15-
<directory suffix=".php">./tests/</directory>
15+
<directory suffix="Test.php">./tests/</directory>
1616
</testsuite>
1717
</testsuites>
1818
</phpunit>

0 commit comments

Comments
 (0)