Skip to content

Commit cd59f8d

Browse files
authored
Merge pull request #19 from renoki-co/shift-build-2349
Laravel 9.x
2 parents 69cf93f + c0dc3c7 commit cd59f8d

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,19 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
php:
22-
- '7.4'
2323
- '8.0'
24+
- '8.1'
2425
laravel:
25-
- 7.*
26-
- 8.*
26+
- 9.*
2727
prefer:
2828
- 'prefer-lowest'
2929
- 'prefer-stable'
3030
include:
31-
- laravel: '7.*'
32-
testbench: '5.*'
33-
- laravel: '8.*'
34-
testbench: '6.*'
31+
- laravel: '9.*'
32+
testbench: '7.*'
3533

3634
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3735

@@ -56,9 +54,9 @@ jobs:
5654
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
5755
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest
5856
59-
- name: Run static analysis
60-
run: |
61-
vendor/bin/psalm
57+
# - name: Run static analysis
58+
# run: |
59+
# vendor/bin/psalm
6260

6361
- name: Run tests
6462
run: |

composer.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"name": "renoki-co/laravel-explicit-array",
33
"description": "Improved Laravel dot notation for explicit array keys.",
4-
"keywords": ["laravel", "php", "arr", "support", "array"],
4+
"keywords": [
5+
"laravel",
6+
"php",
7+
"arr",
8+
"support",
9+
"array"
10+
],
511
"license": "Apache-2.0",
612
"homepage": "https://github.com/renoki-co/laravel-explicit-array",
713
"authors": [
@@ -12,7 +18,7 @@
1218
}
1319
],
1420
"require": {
15-
"illuminate/support": "^7.40|^8.40"
21+
"illuminate/support": "^9.0"
1622
},
1723
"autoload": {
1824
"psr-4": {
@@ -29,8 +35,9 @@
2935
},
3036
"require-dev": {
3137
"mockery/mockery": "^1.5",
32-
"orchestra/testbench": "^6.24.0",
33-
"vimeo/psalm": "4.19.0"
38+
"orchestra/testbench": "^7.0",
39+
"vimeo/psalm": "4.19.0",
40+
"phpunit/phpunit": "^9.0"
3441
},
3542
"config": {
3643
"sort-packages": true

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ abstract class TestCase extends Orchestra
99
/**
1010
* {@inheritdoc}
1111
*/
12-
public function setUp(): void
12+
protected function setUp(): void
1313
{
1414
parent::setUp();
1515
}

0 commit comments

Comments
 (0)