Skip to content

Commit 8e21b8e

Browse files
authored
PHP 8.2 Support πŸš€ (#125)
* PHP 8.2 Support πŸš€ * Removing PHP7.4 support * Adding 8.2 tag
1 parent 70ad685 commit 8e21b8e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

β€Ž.github/dependabot.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
version: 2
22
updates:
33
- package-ecosystem: "docker"
4-
directory: "/7.4"
4+
directory: "/8.0"
55
schedule:
66
interval: "daily"
77
ignore:
88
- dependency-name: "*"
99
update-types: ["version-update:semver-major"]
1010

1111
- package-ecosystem: "docker"
12-
directory: "/8.0"
12+
directory: "/8.1"
1313
schedule:
1414
interval: "daily"
1515
ignore:
1616
- dependency-name: "*"
1717
update-types: ["version-update:semver-major"]
1818

1919
- package-ecosystem: "docker"
20-
directory: "/8.1"
20+
directory: "/8.2"
2121
schedule:
2222
interval: "daily"
2323
ignore:

β€Ž.github/workflows/packages.ymlβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
matrix:
1717
include:
1818
- tag: 'latest'
19-
php: '8.1'
19+
php: '8.2'
2020
- tag: 'stable'
21-
php: '8.1'
21+
php: '8.2'
22+
- tag: '8.2'
23+
php: '8.2'
2224
- tag: '8.1'
2325
php: '8.1'
2426
- tag: '8.0'
2527
php: '8.0'
26-
- tag: '7.4'
27-
php: '7.4'
2828

2929
steps:
3030
- uses: actions/checkout@v3

β€Ž7.4/Dockerfileβ€Ž renamed to β€Ž8.2/Dockerfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4.33-alpine3.15
1+
FROM php:8.2-alpine3.17
22

33
# Add docker-php-extension-installer script
44
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
| Tags | PHP version | Features |
88
| - | - | - |
9-
| 7.4 | 7.4 | βœ… Everything. |
109
| 8.0 | 8.0 | βœ… Everything. |
1110
| 8.1 | 8.1 | βœ… Everything. |
12-
| stable | **8.1** | πŸ”— Aliases the latest stable version of PHP that supports all features of this docker image. |
13-
| latest | **8.1** | πŸ”— Aliases the latest stable version of PHP available (even if that version does not support all features yet). |
11+
| 8.2 | 8.2 | βœ… Everything. |
12+
| stable | **8.2** | πŸ”— Aliases the latest stable version of PHP that supports all features of this docker image. |
13+
| latest | **8.2** | πŸ”— Aliases the latest stable version of PHP available (even if that version does not support all features yet). |
1414

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

0 commit comments

Comments
Β (0)