10000 Laravel v10 support (#158) · KornaLaravel/laravel-tinker@74d0b28 · GitHub
[go: up one dir, main page]

Skip to content

Commit 74d0b28

Browse files
authored
Laravel v10 support (laravel#158)
* Update composer.json * Update tests.yml * Update tests.yml
1 parent a4dec1e commit 74d0b28

File tree

2 files changed

+23
-15
lines changed

2 files changed

+23
-15
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,34 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
20-
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
20+
laravel: [6, 7, 8, 9, 10]
2121
exclude:
2222
- php: 7.2
23-
laravel: ^8.0
23+
laravel: 8
2424
- php: 7.2
25-
laravel: ^9.0
25+
laravel: 9
26+
- php: 7.2
27+
laravel: 10
28+
- php: 7.3
29+
laravel: 9
2630
- php: 7.3
27-
laravel: ^9.0
31+
laravel: 10
32+
- php: 7.4
33+
laravel: 9
2834
- php: 7.4
29-
laravel: ^9.0
35+
laravel: 10
36+
- php: '8.0'
37+
laravel: 10
3038
- php: 8.1
31-
laravel: ^6.0
39+
laravel: 6
3240
- php: 8.1
33-
laravel: ^7.0
41+
laravel: 7
3442
- php: 8.2
35-
laravel: ^6.0
43+
laravel: 6
3644
- php: 8.2
37-
laravel: ^7.0
45+
laravel: 7
3846
- php: 8.2
39-
laravel: ^8.0
47+
laravel: 8
4048

4149
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
4250

@@ -55,7 +63,7 @@ jobs:
5563

5664
- name: Install dependencies
5765
run: |
58-
composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update
66+
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
5967
composer update --prefer-dist --no-interaction --no-progress
6068
6169
- name: Execute tests

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
],
1212
"require": {
1313
"php": "^7.2.5|^8.0",
14-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
15-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
16-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
14+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
15+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
16+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
1717
"psy/psysh": "^0.10.4|^0.11.1",
1818
"symfony/var-dumper": "^4.3.4|^5.0|^6.0"
1919
},
@@ -22,7 +22,7 @@
2222
"phpunit/phpunit": "^8.5.8|^9.3.3"
2323
},
2424
"suggest": {
25-
"illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
25+
"illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)
0