Skip to content

Commit 3eacf89

Browse files
author
Riccardo Dalla Via
authored
ADD Laravel 10 compatibility (#5)
1 parent a478310 commit 3eacf89

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

Diff for: .github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.1'
19+
php-version: '8.0'
2020
coverage: none
2121

2222
- name: Configure Composer

Diff for: .github/workflows/run-tests.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ 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.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
2123
testbench: 7.*
22-
- laravel: 8.*
23-
testbench: ^6.23
24+
exclude:
25+
- laravel: 10.*
26+
php: 8.0
2427

2528
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2629

Diff for: LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 MAIZE SRL <[email protected]>
3+
Copyright (c) 2023 MAIZE SRL <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Diff for: composer.json

+6-7
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,22 @@
2626
],
2727
"require": {
2828
"php": "^8.0",
29-
"illuminate/contracts": "^8.71|^9.0",
29+
"illuminate/contracts": "^9.0|^10.0",
3030
"laravel/nova": "^4.0",
3131
"spatie/eloquent-sortable": "^4.0",
32-
"spatie/laravel-package-tools": "^1.9.2"
32+
"spatie/laravel-package-tools": "^1.14.1"
3333
},
3434
"require-dev": {
3535
"laravel/pint": "^1.0",
36-
"nunomaduro/collision": "^5.0|^6.0",
37-
"nunomaduro/larastan": "^1.0|^2.0.1",
38-
"orchestra/testbench": "^6.23|^7.0",
36+
"nunomaduro/collision": "^6.0",
37+
"nunomaduro/larastan": "^2.0.1",
38+
"orchestra/testbench": "^7.0|^8.0",
3939
"pestphp/pest": "^1.21",
4040
"pestphp/pest-plugin-laravel": "^1.1",
4141
"phpstan/extension-installer": "^1.1",
4242
"phpstan/phpstan-deprecation-rules": "^1.0",
4343
"phpstan/phpstan-phpunit": "^1.0",
44-
"phpunit/phpunit": "^9.5",
45-
"spatie/laravel-ray": "^1.26"
44+
"phpunit/phpunit": "^9.5"
4645
},
4746
"autoload": {
4847
"psr-4": {

0 commit comments

Comments
 (0)