Skip to content

Commit 97d5e81

Browse files
authored
Laravel 10 support (#17)
Laravel 10 support
1 parent 580ca11 commit 97d5e81

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

.github/workflows/run-tests.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,23 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1, 8.0]
17-
laravel: [9.*, 8.*]
16+
php: [8.2, 8.1, 8.0]
17+
laravel: [10.*, 9.*, 8.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: ^8.0.0
2022
- laravel: 9.*
2123
testbench: ^7.0.0
2224
- laravel: 8.*
2325
testbench: ^6.23
26+
exclude:
27+
- laravel: 8.*
28+
php: 8.2
29+
- laravel: 9.*
30+
php: 8.2
31+
- laravel: 10.*
32+
php: 8.0
2433

2534
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2635

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
"require": {
1919
"php": "^8.0|^8.1",
2020
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/console": "^8.75|^9.0",
22-
"illuminate/contracts": "^8.0|^9.0"
21+
"illuminate/console": "^8.75|^9.0|^10.0",
22+
"illuminate/contracts": "^8.0|^9.0|^10.0"
2323
},
2424
"require-dev": {
25-
"nunomaduro/collision": "^5.10|^6.1",
26-
"nunomaduro/larastan": "^1.0",
27-
"orchestra/testbench": "^6.23|^7.0.0",
28-
"pestphp/pest": "^1.21",
29-
"pestphp/pest-plugin-laravel": "^1.1",
30-
"phpstan/extension-installer": "^1.1",
25+
"nunomaduro/collision": "^5.10|^6.1|^7.0",
26+
"nunomaduro/larastan": "^1.0|^2.0",
27+
"orchestra/testbench": "^6.23|^7.0.0|^8.0",
28+
"pestphp/pest": "^1.22",
29+
"pestphp/pest-plugin-laravel": "^1.3",
30+
"phpstan/extension-installer": "^1.2",
3131
"phpstan/phpstan-deprecation-rules": "^1.0",
3232
"phpstan/phpstan-phpunit": "^1.0",
33-
"phpunit/phpunit": "^9.5"
33+
"phpunit/phpunit": "^9.5|^10.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

tests/PresentersTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
use Coderflex\LaravelPresenter\Tests\Models\User;
55

66
it('cannot create new presenter without a name argument', function () {
7+
$this->markTestSkipped(
8+
__('In laravel V9.*, and above versions, it can put a question for the name argument, if it\'s not presented.')
9+
);
10+
711
$this->artisan('presenter:make ')
812
->assertExitCode(1);
913
})->throws(

0 commit comments

Comments
 (0)