From f3c8befddcf76410dffe7c86bdba500f14b6a6b0 Mon Sep 17 00:00:00 2001 From: WalterWoshid Date: Sat, 5 Sep 2026 16:59:07 +0200 Subject: [PATCH] Support PHP 8.5 and test PHP 8.1 through 8.5 --- .github/workflows/performance-tests.yml | 2 +- .github/workflows/tests.yml | 4 +++- src/Core/Attributes/Base/BaseAttribute.php | 3 --- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 5e83562..17246f7 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-version: [ '8.1', '8.2' ] + php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php-version }} performance test on ${{ matrix.operating-system }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 462bf61..a8cd097 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,8 @@ on: types: - opened - edited + - synchronize + - reopened branches: - master @@ -23,7 +25,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-version: [ '8.1', '8.2' ] + php-version: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php-version }} tests on ${{ matrix.operating-system }} diff --git a/src/Core/Attributes/Base/BaseAttribute.php b/src/Core/Attributes/Base/BaseAttribute.php index 4f7d1d6..bae4f8c 100644 --- a/src/Core/Attributes/Base/BaseAttribute.php +++ b/src/Core/Attributes/Base/BaseAttribute.php @@ -2,14 +2,11 @@ namespace Okapi\Aop\Core\Attributes\Base; -use Attribute; - /** * # Base attribute * * Base attribute for all AOP attributes. */ -#[Attribute] abstract class BaseAttribute { }