Skip to content

Commit

Permalink
Added support to PHP 8.3 (#132)
Browse files Browse the repository at this point in the history
* Added support to PHP 8.3

* Removed PHP 8.0
  • Loading branch information
felipehertzer authored Nov 28, 2023
1 parent f523fb1 commit 9d6a269
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/8.0"
directory: "/8.1"
schedule:
interval: "daily"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

- package-ecosystem: "docker"
directory: "/8.1"
directory: "/8.2"
schedule:
interval: "daily"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

- package-ecosystem: "docker"
directory: "/8.2"
directory: "/8.3"
schedule:
interval: "daily"
ignore:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
matrix:
include:
- tag: 'latest'
php: '8.2'
php: '8.3'
- tag: 'stable'
php: '8.2'
php: '8.3'
- tag: '8.3'
php: '8.3'
- tag: '8.2'
php: '8.2'
- tag: '8.1'
php: '8.1'
- tag: '8.0'
php: '8.0'

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion 8.0/Dockerfile β†’ 8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0.13-alpine3.13
FROM php:8.3-alpine3.17

# Add docker-php-extension-installer script
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
[![Docker Badge](https://img.shields.io/docker/pulls/lorisleiva/laravel-docker)](https://hub.docker.com/r/lorisleiva/laravel-docker/)


| Tags | PHP version | Features |
| - | - | - |
| 8.0 | 8.0 | βœ… Everything. |
| 8.1 | 8.1 | βœ… Everything. |
| 8.2 | 8.2 | βœ… Everything. |
| stable | **8.2** | πŸ”— Aliases the latest stable version of PHP that supports all features of this docker image. |
| latest | **8.2** | πŸ”— Aliases the latest stable version of PHP available (even if that version does not support all features yet). |
| Tags | PHP version | Features |
|--------|-------------| - |
| 8.1 | 8.1 | βœ… Everything. |
| 8.2 | 8.2 | βœ… Everything. |
| 8.3 | 8.3 | βœ… Everything. |
| stable | **8.3** | πŸ”— Aliases the latest stable version of PHP that supports all features of this docker image. |
| latest | **8.3** | πŸ”— Aliases the latest stable version of PHP available (even if that version does not support all features yet). |

#### Use within your GitLab's pipelines.
* [Run test suite and check codestyle](http://lorisleiva.com/using-gitlabs-pipeline-with-laravel/)
Expand Down

0 comments on commit 9d6a269

Please sign in to comment.