Skip to content

Commit 85f45c3

Browse files
authored
Merge pull request #33 from renoki-co/shift-build-2349
Laravel 9.x
2 parents 837fc41 + ab1ca15 commit 85f45c3

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@ 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.*
2626
- 8.*
27+
- 9.*
2728
prefer:
2829
- 'prefer-lowest'
2930
- 'prefer-stable'
3031
include:
31-
- laravel: '7.*'
32-
testbench: '5.*'
3332
- laravel: '8.*'
3433
testbench: '6.*'
34+
- laravel: '9.*'
35+
testbench: '7.*'
3536

3637
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3738

composer.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"name": "renoki-co/laravel-php-k8s",
33
"description": "Just a simple port of renoki-co/php-k8s for easier access in Laravel.",
4-
"keywords": ["laravel", "php", "laravel", "kubernetes", "k8s", "k3s", "kube"],
4+
"keywords": [
5+
"laravel",
6+
"php",
7+
"laravel",
8+
"kubernetes",
9+
"k8s",
10+
"k3s",
11+
"kube"
12+
],
513
"license": "Apache-2.0",
614
"homepage": "https://github.com/renoki-co/laravel-php-k8s",
715
"authors": [
@@ -12,7 +20,7 @@
1220
}
1321
],
1422
"require": {
15-
"renoki-co/php-k8s": "^3.5.1"
23+
"renoki-co/php-k8s": "^3.6"
1624
},
1725
"autoload": {
1826
"psr-4": {
@@ -29,7 +37,9 @@
2937
},
3038
"require-dev": {
3139
"mockery/mockery": "^1.5",
32-
"orchestra/testbench": "^6.24.0"
40+
"orchestra/testbench": "^6.28|^7.0",
41+
"orchestra/testbench-core": "^6.28|^7.0",
42+
"phpunit/phpunit": "^9.5.13"
3343
},
3444
"config": {
3545
"sort-packages": true

tests/ConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ConfigurationTest extends TestCase
1010
/**
1111
* {@inheritdoc}
1212
*/
13-
public function setUp(): void
13+
protected function setUp(): void
1414
{
1515
parent::setUp();
1616
}

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 tearDown(): void
12+
protected function tearDown(): void
1313
{
1414
parent::tearDown();
1515

0 commit comments

Comments
 (0)