Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading to php8.0 #11

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .docker/8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM composer:latest as composer
FROM php:8.0-fpm

ENV PHALCON_VERSION='5.2.2' \
ENV PHALCON_VERSION='5.6.1' \
PHP_VERSION='8.0'

RUN apt update -y && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM composer:latest as composer
FROM php:8.1-fpm

ENV PHALCON_VERSION='5.2.2' \
ENV PHALCON_VERSION='5.6.1' \
PHP_VERSION='8.1'

RUN apt update -y && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM composer:latest as composer
FROM php:8.2-fpm

ENV PHALCON_VERSION='5.2.2' \
ENV PHALCON_VERSION='5.6.1' \
PHP_VERSION='8.2'

RUN apt update -y && \
Expand Down
6 changes: 3 additions & 3 deletions .docker/7.4/Dockerfile → .docker/8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM composer:latest as composer
FROM php:7.4-fpm
FROM php:8.3-fpm

ENV PHALCON_VERSION='5.2.2' \
PHP_VERSION='7.4'
ENV PHALCON_VERSION='5.6.1' \
PHP_VERSION='8.3'

RUN apt update -y && \
apt install -y \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: [ '7.4', '8.0', '8.1', '8.2' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
steps:
- uses: actions/checkout@v1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: [ '7.4', '8.0', '8.1', '8.2' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]

steps:
- name: Checkout the code
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.4",
"php": ">=8.0",
"ext-phalcon": "^5.0",
"ext-json": "*"
},
Expand All @@ -51,7 +51,7 @@
},
"config": {
"platform": {
"php": "7.4"
"php": "8.0"
}
},
"autoload": {
Expand Down
Loading
Loading