Skip to content

Commit

Permalink
build(deps): drop Laravel 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Feb 26, 2025
1 parent d523af5 commit ce1612b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 25 deletions.
9 changes: 1 addition & 8 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]
php: [8.2, 8.3]
laravel: [10.*, 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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"require": {
"php": "^8.1",
"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

0 comments on commit ce1612b

Please sign in to comment.