Skip to content

Commit

Permalink
Merge pull request #33 from renoki-co/shift-build-2349
Browse files Browse the repository at this point in the history
Laravel 9.x
  • Loading branch information
rennokki authored Feb 10, 2022
2 parents 837fc41 + ab1ca15 commit 85f45c3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,22 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
laravel:
- 7.*
- 8.*
- 9.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'

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

Expand Down
16 changes: 13 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"name": "renoki-co/laravel-php-k8s",
"description": "Just a simple port of renoki-co/php-k8s for easier access in Laravel.",
"keywords": ["laravel", "php", "laravel", "kubernetes", "k8s", "k3s", "kube"],
"keywords": [
"laravel",
"php",
"laravel",
"kubernetes",
"k8s",
"k3s",
"kube"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-php-k8s",
"authors": [
Expand All @@ -12,7 +20,7 @@
}
],
"require": {
"renoki-co/php-k8s": "^3.5.1"
"renoki-co/php-k8s": "^3.6"
},
"autoload": {
"psr-4": {
Expand All @@ -29,7 +37,9 @@
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.24.0"
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.13"
},
"config": {
"sort-packages": true
Expand Down
2 changes: 1 addition & 1 deletion tests/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ConfigurationTest extends TestCase
/**
* {@inheritdoc}
*/
public function setUp(): void
protected function setUp(): void
{
parent::setUp();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ abstract class TestCase extends Orchestra
/**
* {@inheritDoc}
*/
public function tearDown(): void
protected function tearDown(): void
{
parent::tearDown();

Expand Down

0 comments on commit 85f45c3

Please sign in to comment.