Skip to content

Commit 9dad70c

Browse files
authored
FRW-998 Switched PHP version from 8.0 to 8.1 by default, enabled support of PHP 8.2. (#10577)
FRW-998 Dropped PHP 8.0 and added PHP 8.2 support.
1 parent 882eeea commit 9dad70c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.0'
21+
php-version: '8.2'
2222
extensions: mbstring, intl, bcmath
2323
coverage: none
2424

@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup PHP
4242
uses: shivammathur/setup-php@v2
4343
with:
44-
php-version: '8.0'
44+
php-version: '8.1'
4545
extensions: mbstring, intl, bcmath
4646
coverage: none
4747

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Queue Module
22
[![Latest Stable Version](https://poser.pugx.org/spryker/queue/v/stable.svg)](https://packagist.org/packages/spryker/queue)
3-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
44

55
Queue module provides a set of APIs and Commands for sending/receiving messages to/from queues for other bundles in Spryker. The Queue System provides a protocol for managing asynchronous processing, asynchronous processing in the sense that the sender and receiver do not have access to the same message at the same time. The sender produces a message and sends it to the message box, later when the receiver connects to the message box the message is received.
66

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Queue module",
55
"license": "proprietary",
66
"require": {
7-
"php": ">=8.0",
7+
"php": ">=8.1",
88
"spryker/gui": "^3.0.0",
99
"spryker/kernel": "^3.30.0",
1010
"spryker/propel-orm": "^1.0.0",

src/Spryker/Zed/Queue/Communication/Console/QueueDumpConsole.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class QueueDumpConsole extends Console
104104
/**
105105
* @return void
106106
*/
107-
protected function configure()
107+
protected function configure(): void
108108
{
109109
$this->setName(static::COMMAND_NAME);
110110
$this->setDescription(static::DESCRIPTION);

src/Spryker/Zed/Queue/Communication/Console/QueueTaskConsole.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class QueueTaskConsole extends Console
4444
/**
4545
* @return void
4646
*/
47-
protected function configure()
47+
protected function configure(): void
4848
{
4949
$this->setName(static::COMMAND_NAME);
5050
$this->setDescription(static::DESCRIPTION);

src/Spryker/Zed/Queue/Communication/Console/QueueWorkerConsole.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class QueueWorkerConsole extends Console
4545
/**
4646
* @return void
4747
*/
48-
protected function configure()
48+
protected function configure(): void
4949
{
5050
$this->setName(static::COMMAND_NAME);
5151
$this->setDescription(static::DESCRIPTION);

0 commit comments

Comments
 (0)