Skip to content

Commit

Permalink
[TransactionalMessenger] Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Apricot committed Dec 15, 2023
1 parent 64c1610 commit afb3a78
Show file tree
Hide file tree
Showing 5 changed files with 953 additions and 943 deletions.
2 changes: 1 addition & 1 deletion .docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm-alpine
FROM php:8.3-fpm-alpine

ENV COMPOSER_ALLOW_SUPERUSER=1
ENV PATH=$HOME/.composer/vendor/bin:$PATH
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ jobs:
php:
- "8.1"
- "8.2"
- "8.3"
include:
- php-versions: ["8.1", "8.2"]
- php-versions: ["8.1", "8.2", "8.3"]
- composer-options: "--ignore-platform-reqs"

steps:
Expand Down
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build:
- php-scrutinizer-run

environment:
php: 8.1.9
php: 8.3.0

filter:
excluded_paths:
Expand Down
23 changes: 11 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
}
],
"require": {
"php": "^8.1",
"fp4php/functional": "^4.19",
"symfony/http-kernel": "^5.4|^6",
"symfony/framework-bundle": "^v5.4|^6",
"symfony/event-dispatcher": "^5.4|^6",
"frzb/dependency-injection": "^1.6",
"symfony/yaml": "^5.4|^6",
"symfony/messenger": "^5.4|^6"
"php": ">=8.1",
"fp4php/functional": "^4.20",
"symfony/http-kernel": "^5.4|^6|^7",
"symfony/framework-bundle": "^5.4|^6|^7",
"symfony/event-dispatcher": "^5.4|^6|^7",
"frzb/dependency-injection": "^1.8",
"symfony/yaml": "^5.4|^6|^7",
"symfony/messenger": "^5.4|^6|^7"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpunit/phpunit": "^10.5",
"phpunit/php-code-coverage": "^10.0",
"symfony/phpunit-bridge": "^5.4|^6",
"symfony/phpunit-bridge": "^5.4|^6|^7",
"friendsofphp/php-cs-fixer": "^3.9",
"symfony/test-pack": "^1.0.10"
},
Expand All @@ -49,9 +49,8 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*||6.0.*||6.1.*||6.2.*"
"require": "5.4.*||6.0.*||6.1.*||6.2.*||6.3.*||6.4.*|7.0.*"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit afb3a78

Please sign in to comment.