Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3', '8.4']
php-versions: ['8.4']
# see https://mariadb.com/kb/en/mariadb-server-release-dates/
# this should be a current release, e.g. the LTS version
mariadb-versions: ['10.6']
Expand All @@ -32,15 +32,15 @@ jobs:
static-analysis: ['no']
experimental: [false]
include:
- php-versions: '8.2'
- php-versions: '8.4'
mariadb-versions: '' # skip mariadb setup
postgresql-versions: '' # skip postgresql setup
static-analysis: 'yes'
experimental: true
dependencies: 'highest'

# Build for minimum dependencies.
- php-versions: '8.2'
- php-versions: '8.4'
mariadb-versions: '10.2'
postgresql-versions: '10-alpine'
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": "^8.2",
"php": "^8.4",
"psr/simple-cache": "^2.0 || ^3.0",
"psr/cache": "^2.0 || ^3.0",
"psr/log": "^2.0 || ^3.0",
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": "^8.2",
"php": "^8.4",
"neos/flow": "self.version",
"neos/cache": "self.version",
"neos/utility-unicode": "self.version",
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": "^8.0"
"php": "^8.4"
},
"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": "^8.2",
"php": "^8.4",
"neos/utility-files": "self.version",
"psr/log": "^2.0 || ^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion Neos.Flow/Classes/ObjectManagement/Proxy/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function getProxyClass(string $fullClassName): ProxyClass|false
return false;
}

if (method_exists($classReflection, 'isEnum') && $classReflection->isEnum()) {
if ($classReflection->isEnum()) {
return false;
}

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": "^8.2",
"php": "^8.4",

"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": "^8.2",
"php": "^8.4",
"neos/flow": "self.version",
"neos/cache": "self.version",
"neos/utility-files": "self.version",
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": "^8.2",
"php": "^8.4",
"psr/http-factory": "^1.0",
"guzzlehttp/psr7": "^1.8.4 || ^2.1.1"
},
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": "^8.2",
"php": "^8.4",
"neos/flow": "self.version",
"neos/fluid-adaptor": "self.version",
"neos/utility-arrays": "self.version"
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": "^8.2",
"php": "^8.4",
"neos/utility-objecthandling": "self.version"
},
"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": "^8.2",
"php": "^8.4",
"neos/error-messages": "self.version"
},
"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": "^8.0"
"php": "^8.4"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.10",
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": "^8.0"
"php": "^8.4"
},
"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": "^8.0"
"php": "^8.4"
},
"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": "^8.0"
"php": "^8.4"
},
"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": "^8.2",
"php": "^8.4",
"neos/error-messages": "self.version"
},
"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": "^8.2",
"php": "^8.4",
"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 @@ -17,7 +17,7 @@
},
"require": {
"behat/behat": "^3.10",
"php": "^8.2",
"php": "^8.4",
"psr/simple-cache": "^2.0 || ^3.0",
"psr/cache": "^2.0 || ^3.0",
"psr/log": "^2.0 || ^3.0",
Expand Down