Skip to content

Commit

Permalink
Merge pull request #2015 from kdambekalns/task/test-php8
Browse files Browse the repository at this point in the history
TASK: Test against PHP 8
  • Loading branch information
kdambekalns committed Aug 17, 2020
2 parents 5dcf2a1 + 3ebba3b commit 89ef448
Show file tree
Hide file tree
Showing 18 changed files with 45 additions and 39 deletions.
16 changes: 11 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,26 @@ jobs:
addons:
mariadb: '10.2'
- php: 7.4
env: DB=mysql
addons:
mariadb: '10.2'
- php: 7.4
env: DB=mysql BEHAT=true
addons:
mariadb: '10.2'
- php: nightly
env: DB=pgsql
sudo: required
addons:
postgresql: "9.5"
- php: 7.4
- php: nightly
env: DB=pgsql BEHAT=true
sudo: required
addons:
postgresql: "9.5"
- php: 7.4
- php: nightly
env: DB=mysql
addons:
mariadb: '10.2'
- php: 7.4
- php: nightly
env: DB=mysql BEHAT=true
addons:
mariadb: '10.2'
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.2",
"php": "^7.2 || ^8.0",
"psr/simple-cache": "^1.0",
"psr/cache": "~1.0",
"neos/utility-files": "*",
Expand Down
4 changes: 2 additions & 2 deletions Neos.Eel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"license": ["MIT"],
"description": "The Embedded Expression Language (Eel) is a building block for creating Domain Specific Languages",
"require": {
"php": "^7.2",
"neos/flow": "~6.2.0",
"php": "^7.2 || ^8.0",
"neos/flow": "*",
"neos/cache": "*",
"neos/utility-unicode": "*",
"neos/utility-objecthandling": "*"
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.2"
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "~8.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.2",
"php": "^7.2 || ^8.0",
"neos/utility-files": "*",
"psr/log": "^1.0.1"
},
Expand Down
30 changes: 15 additions & 15 deletions Neos.Flow/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@
"license": ["MIT"],

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

"ext-zlib": "*",
"ext-SPL": "*",
"ext-json": "*",
"ext-reflection": "*",
"ext-xml": "*",

"neos/cache": "~6.2.0",
"neos/eel": "~6.2.0",
"neos/error-messages": "~6.2.0",
"neos/utility-arrays": "~6.2.0",
"neos/utility-files": "~6.2.0",
"neos/utility-mediatypes": "~6.2.0",
"neos/utility-objecthandling": "~6.2.0",
"neos/utility-opcodecache": "~6.2.0",
"neos/utility-schema": "~6.2.0",
"neos/utility-unicode": "~6.2.0",
"neos/fluid-adaptor": "~6.2.0",
"neos/flow-log": "~6.2.0",
"neos/http-factories": "~6.2.0",
"neos/cache": "*",
"neos/eel": "*",
"neos/error-messages": "*",
"neos/utility-arrays": "*",
"neos/utility-files": "*",
"neos/utility-mediatypes": "*",
"neos/utility-objecthandling": "*",
"neos/utility-opcodecache": "*",
"neos/utility-schema": "*",
"neos/utility-unicode": "*",
"neos/fluid-adaptor": "*",
"neos/flow-log": "*",
"neos/http-factories": "*",

"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
Expand All @@ -47,7 +47,7 @@
"symfony/console": "^4.2",

"neos/composer-plugin": "^2.0",
"neos/utility-pdo": "~6.2.0",
"neos/utility-pdo": "*",

"composer/composer": "^1.9"
},
Expand Down
4 changes: 2 additions & 2 deletions Neos.FluidAdaptor/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"MIT"
],
"require": {
"php": "^7.2",
"neos/flow": "~6.2.0",
"php": "^7.2 || ^8.0",
"neos/flow": "*",
"neos/cache": "*",
"neos/utility-files": "*",
"neos/utility-objecthandling": "*",
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",
"php": "^7.1 || ^8.0",
"psr/http-factory": "^1.0",
"guzzlehttp/psr7": "^1.4 || ~2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions Neos.Kickstarter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "A simple generator for controller and views.",
"license": "MIT",
"require": {
"php": "^7.2",
"neos/flow": "~6.2.0",
"php": "^7.2 || ^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.2",
"php": "^7.2 || ^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.2",
"php": "^7.2 || ^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.2"
"php": "^7.2 || ^8.0"
},
"require-dev": {
"mikey179/vfsstream": "~1.6",
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.2"
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "~8.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.2"
"php": "^7.2 || ^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.2"
"php": "^7.2 || ^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.2",
"php": "^7.2 || ^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.2",
"php": "^7.2 || ^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.2",
"php": "^7.2 || ^8.0",
"psr/simple-cache": "^1.0",
"psr/cache": "~1.0",
"psr/log": "^1.0",
Expand Down

0 comments on commit 89ef448

Please sign in to comment.