Skip to content

Commit

Permalink
Merge pull request #14 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 3, 2022
2 parents e5954b2 + 7068c2a commit 01887b6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,19 @@ jobs:
runs-on: ubuntu-latest

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

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

Expand Down
17 changes: 12 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "renoki-co/laravel-exporter-contracts",
"description": "Base contracts implementation for Prometheus exports in Laravel.",
"keywords": ["laravel", "php", "prometheus", "metrics", "exporter"],
"keywords": [
"laravel",
"php",
"prometheus",
"metrics",
"exporter"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-exporter-contracts",
"authors": [
Expand All @@ -14,9 +20,9 @@
"require": {
"php": "^8.0",
"promphp/prometheus_client_php": "^2.4",
"illuminate/config": "^8.40",
"illuminate/routing": "^8.40",
"illuminate/support": "^8.40"
"illuminate/config": "^9.0",
"illuminate/routing": "^9.0",
"illuminate/support": "^9.0"
},
"autoload": {
"psr-4": {
Expand All @@ -33,7 +39,8 @@
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.24.0"
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"sort-packages": true
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 setUp(): void
protected function setUp(): void
{
parent::setUp();
}
Expand Down

0 comments on commit 01887b6

Please sign in to comment.