diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 854efaae..37a63876 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -13,7 +13,5 @@ jobs: with: os: >- ['ubuntu-latest'] - php: >- - ['8.1', '8.2'] stability: >- ['prefer-stable', 'prefer-lowest'] diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index bdb570c7..d74fdb9b 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -13,5 +13,3 @@ jobs: with: os: >- ['ubuntu-latest'] - php: >- - ['8.1'] diff --git a/composer.json b/composer.json index 400f2024..ce3a94c8 100644 --- a/composer.json +++ b/composer.json @@ -2,13 +2,33 @@ "name": "spiral/attributes", "type": "library", "description": "PHP attributes reader", + "keywords": ["attributes", "annotations", "metadata"], "license": "MIT", "homepage": "https://spiral.dev", "support": { "issues": "https://github.com/spiral/attributes/issues", - "source": "https://github.com/spiral/attributes" + "source": "https://github.com/spiral/attributes", + "docs": "https://spiral.dev/docs", + "forum": "https://forum.spiral.dev", + "chat": "https://discord.gg/V6EK4he" }, "authors": [ + { + "name": "Anton Titov (wolfy-j)", + "email": "wolfy-j@spiralscout.com" + }, + { + "name": "Pavel Butchnev (butschster)", + "email": "pavel.buchnev@spiralscout.com" + }, + { + "name": "Aleksei Gagarin (roxblnfk)", + "email": "alexey.gagarin@spiralscout.com" + }, + { + "name": "Maksim Smakouz (msmakouz)", + "email": "maksim.smakouz@spiralscout.com" + }, { "name": "Kirill Nesmeyanov (SerafimArts)", "email": "kirill.nesmeyanov@spiralscout.com" @@ -16,11 +36,11 @@ ], "require": { "php": ">=8.1", - "psr/cache": ">=1.0", + "psr/cache": "1 - 3", "psr/simple-cache": "1 - 3" }, "require-dev": { - "doctrine/annotations": "^1.12 || ^2.0", + "doctrine/annotations": "^1.14 || ^2.0", "jetbrains/phpstorm-attributes": "^1.0", "phpunit/phpunit": "^9.5.20", "vimeo/psalm": "^5.17" @@ -38,19 +58,17 @@ "Spiral\\Tests\\Attributes\\": "tests" } }, - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/roadrunner-server" } - }, + ], "scripts": { "analyze": [ "psalm --no-cache" ] }, - "suggest": { - "doctrine/annotations": "^1.0 || ^2.0 for Doctrine metadata driver support" - }, "config": { "sort-packages": true },