Skip to content

Commit

Permalink
Merge pull request #23 from ray-di/php8.4
Browse files Browse the repository at this point in the history
Enable PHP 8.4 compat and bump symfony/cache v7
  • Loading branch information
koriym authored Nov 2, 2024
2 parents 25f510d + 8a9d4ed commit 81d262d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Alerts only major updates for Packagist (Composer)
#
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "composer" # Specify the correct package ecosystem for PHP
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
ignore:
- dependency-name: "*" # Ignore all dependencies for specific update types
update-types: ["version-update:semver-minor"]
- dependency-name: "phpunit/phpunit"
update-types: ["version-update:semver-major"]
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
cs:
uses: ray-di/.github/.github/workflows/coding-standards.yml@v1
with:
php_version: 8.2
php_version: 8.3
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
dependencies:
- lowest
- highest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
sa:
uses: ray-di/.github/.github/workflows/static-analysis.yml@v1
with:
php_version: 8.2
php_version: 8.3
has_crc_config: true
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"php": "^7.3 || ^8.0",
"psr/cache": "^1.0.1 || ^2.0 || ^3.0",
"ray/di": "^2.13.2",
"symfony/cache": "^5.3.4 || ^6.0",
"doctrine/annotations": "^1.13",
"symfony/cache": "^5.3.4 || ^6.0 || ^7.1",
"doctrine/annotations": "^1.13 || ^2.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"ray/aop": "^2.10.4"
},
Expand Down

0 comments on commit 81d262d

Please sign in to comment.