Skip to content

Commit

Permalink
FRW-998 Switched PHP version from 8.0 to 8.1 by default, enabled supp…
Browse files Browse the repository at this point in the history
…ort of PHP 8.2. (#10577)

FRW-998 Dropped PHP 8.0 and added PHP 8.2 support.
  • Loading branch information
asmarovydlo authored Nov 2, 2023
1 parent 59b5c70 commit a8b5a34
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
extensions: mbstring, intl, bcmath
coverage: none

Expand All @@ -41,7 +41,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
extensions: mbstring, intl, bcmath
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Oms Module
[![Latest Stable Version](https://poser.pugx.org/spryker/oms/v/stable.svg)](https://packagist.org/packages/spryker/oms)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)

Oms is Spryker's order management system for implementing complex process flows using state machines. Business processes are mapped to a business state to be able to not only build the process but to monitor and track the steps, to gather insights regarding the sales process and data on which the sales process can be optimized.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Oms module",
"license": "proprietary",
"require": {
"php": ">=8.0",
"php": ">=8.1",
"spryker/acl-merchant-portal-extension": "^1.0.0",
"spryker/decimal-object": "^1.0.0",
"spryker/error-handler": "^2.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class CheckConditionConsole extends Console
/**
* @return void
*/
protected function configure()
protected function configure(): void
{
$this
->setName(static::COMMAND_NAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class CheckTimeoutConsole extends Console
/**
* @return void
*/
protected function configure()
protected function configure(): void
{
$this
->setName(static::COMMAND_NAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ClearLocksConsole extends Console
/**
* @return void
*/
protected function configure()
protected function configure(): void
{
$this->setName(static::COMMAND_NAME);
$this->setDescription(static::COMMAND_DESCRIPTION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ExportReservationConsole extends Console
/**
* @return void
*/
protected function configure()
protected function configure(): void
{
$this->setName(static::COMMAND_NAME);
$this->setDescription(static::COMMAND_DESCRIPTION);
Expand Down

0 comments on commit a8b5a34

Please sign in to comment.