Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): drop Laravel 10 support #27

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,10 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*, 12.*]
php: [8.2, 8.3]
laravel: [11.*, 12.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*
- php: 8.1
laravel: 12.*
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"graylog2/gelf-php": "^1.7",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"illuminate/log": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/log": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"monolog/monolog": "^2.0|^3.3"
},
"require-dev": {
Expand All @@ -36,8 +36,8 @@
"exolnet/phpcs-config": "^2.0",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.5|^11.5.3",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^11.5.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
Expand Down
4 changes: 0 additions & 4 deletions tests/Feature/GraylogDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ protected function setUp(): void

/**
* @return void
* @test
*/
public function testIsAnIlluminateLogger(): void
{
Expand All @@ -44,7 +43,6 @@ public function testIsAnIlluminateLogger(): void

/**
* @return void
* @test
*/
public function testUseAMonologDriver(): void
{
Expand All @@ -53,7 +51,6 @@ public function testUseAMonologDriver(): void

/**
* @return void
* @test
*/
public function testUseGraylogHandler(): void
{
Expand All @@ -66,7 +63,6 @@ public function testUseGraylogHandler(): void

/**
* @return void
* @test
*/
public function testLogging(): void
{
Expand Down
1 change: 0 additions & 1 deletion tests/Feature/Processor/ExtraProcessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class ExtraProcessorTest extends TestCase
{
/**
* @return void
* @test
*/
public function testInvoke(): void
{
Expand Down
1 change: 0 additions & 1 deletion tests/Feature/Processor/LaravelProcessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class LaravelProcessorTest extends TestCase
{
/**
* @return void
* @test
*/
public function testInvoke(): void
{
Expand Down
6 changes: 0 additions & 6 deletions tests/Unit/Transport/TransportFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ protected function setUp(): void

/**
* @return void
* @test
*/
public function testInvalidTransport(): void
{
Expand All @@ -43,7 +42,6 @@ public function testInvalidTransport(): void

/**
* @return void
* @test
*/
public function testMakeUdpTransport(): void
{
Expand All @@ -54,7 +52,6 @@ public function testMakeUdpTransport(): void

/**
* @return void
* @test
*/
public function testMakeTcpTransport(): void
{
Expand All @@ -65,7 +62,6 @@ public function testMakeTcpTransport(): void

/**
* @return void
* @test
*/
public function testMakeSslTransport(): void
{
Expand All @@ -76,7 +72,6 @@ public function testMakeSslTransport(): void

/**
* @return void
* @test
*/
public function testMakeHttpTransport(): void
{
Expand All @@ -88,7 +83,6 @@ public function testMakeHttpTransport(): void

/**
* @return void
* @test
*/
public function testMakeHttpsTransport(): void
{
Expand Down