Skip to content

Commit

Permalink
Merge pull request #2707 from mficzel/task/raiseMinimalPhpVersionTo80
Browse files Browse the repository at this point in the history
!!! TASK: Raise minimal supported PHP version to 8.0.0
  • Loading branch information
mficzel authored Feb 28, 2022
2 parents 81ebc84 + 287750a commit 6832106
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['8.0', '8.1']
dependencies: ['highest']
composer-arguments: [''] # to run --ignore-platform-reqs in experimental builds
static-analysis: ['no']
Expand Down
2 changes: 1 addition & 1 deletion Neos.Cache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": ["MIT"],
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"psr/simple-cache": "^1.0",
"psr/cache": "~1.0",
"neos/utility-files": "*",
Expand Down
2 changes: 1 addition & 1 deletion Neos.Eel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": ["MIT"],
"description": "The Embedded Expression Language (Eel) is a building block for creating Domain Specific Languages",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/flow": "*",
"neos/cache": "*",
"neos/utility-unicode": "*",
Expand Down
2 changes: 1 addition & 1 deletion Neos.Error.Messages/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0"
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "~9.1"
Expand Down
2 changes: 1 addition & 1 deletion Neos.Flow.Log/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"MIT"
],
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/utility-files": "*",
"psr/log": "^1.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion Neos.Flow/Classes/Core/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Bootstrap
/**
* Required PHP version
*/
const MINIMUM_PHP_VERSION = '7.3.0';
const MINIMUM_PHP_VERSION = '8.0.0';

const RUNLEVEL_COMPILETIME = 'Compiletime';
const RUNLEVEL_RUNTIME = 'Runtime';
Expand Down
2 changes: 1 addition & 1 deletion Neos.Flow/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": ["MIT"],

"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",

"ext-zlib": "*",
"ext-SPL": "*",
Expand Down
2 changes: 1 addition & 1 deletion Neos.FluidAdaptor/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"MIT"
],
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/flow": "*",
"neos/cache": "*",
"neos/utility-files": "*",
Expand Down
2 changes: 1 addition & 1 deletion Neos.Http.Factories/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"MIT"
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^8.0",
"psr/http-factory": "^1.0",
"guzzlehttp/psr7": "^1.7, !=1.8.0"
},
Expand Down
2 changes: 1 addition & 1 deletion Neos.Kickstarter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A simple generator for controller and views.",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/flow": "*",
"neos/fluid-adaptor": "*",
"neos/utility-arrays": "*"
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.Arrays/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/utility-objecthandling": "*"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.Files/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/error-messages": "*"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.MediaTypes/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0"
"php": "^8.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.1",
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.ObjectHandling/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0"
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "~9.1",
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.OpcodeCache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0"
"php": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.Pdo/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0"
"php": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.Schema/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "http://flow.neos.io",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"neos/error-messages": "*"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Utility.Unicode/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"bin-dir": "bin"
},
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"ext-mbstring": "*"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
],
"type": "neos-package-collection",
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"psr/simple-cache": "^1.0",
"psr/cache": "~1.0",
"psr/log": "^1.0",
Expand Down

0 comments on commit 6832106

Please sign in to comment.