File tree Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Original file line number Diff line number Diff line change
1
+ # ----------------------
2
+ # The FPM base container
3
+ # ----------------------
4
+ FROM php:8.4-cli-alpine AS dev
5
+
6
+ RUN apk add --no-cache --virtual .build-deps \
7
+ $PHPIZE_DEPS
8
+
9
+ # Cleanup apk cache and temp files
10
+ RUN rm -rf /var/cache/apk/* /tmp/*
11
+
12
+ # ----------------------
13
+ # Composer install step
14
+ # ----------------------
15
+
16
+ # Get latest Composer
17
+ COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
18
+
19
+ # ----------------------
20
+ # The FPM production container
21
+ # ----------------------
22
+ FROM dev
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 4.10.0] - 2025-02-22
8
+
9
+ ### Added
10
+
11
+ - ([ #96 ] ) Added Laravel 12 support
12
+ - ([ #97 ] ) Added PHP 8.4 tests
13
+
7
14
## [ 4.9.0] - 2024-03-05
8
15
9
16
### Added
@@ -190,7 +197,8 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.
190
197
191
198
- Initial release
192
199
193
- [ Unreleased ] : https://github.com/cybercog/laravel-ban/compare/4.9.0...master
200
+ [ Unreleased ] : https://github.com/cybercog/laravel-ban/compare/4.10.0...master
201
+ [ 4.10.0 ] : https://github.com/cybercog/laravel-ban/compare/4.9.0...4.10.0
194
202
[ 4.9.0 ] : https://github.com/cybercog/laravel-ban/compare/4.8.0...4.9.0
195
203
[ 4.8.0 ] : https://github.com/cybercog/laravel-ban/compare/4.7.0...4.8.0
196
204
[ 4.7.0 ] : https://github.com/cybercog/laravel-ban/compare/4.6.1...4.7.0
@@ -213,6 +221,8 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.
213
221
[ 2.0.1 ] : https://github.com/cybercog/laravel-ban/compare/2.0.0...2.0.1
214
222
[ 2.0.0 ] : https://github.com/cybercog/laravel-ban/compare/1.0.0...2.0.0
215
223
224
+ [ #97 ] : https://github.com/cybercog/laravel-ban/pull/97
225
+ [ #96 ] : https://github.com/cybercog/laravel-ban/pull/96
216
226
[ #95 ] : https://github.com/cybercog/laravel-ban/pull/95
217
227
[ #89 ] : https://github.com/cybercog/laravel-ban/pull/89
218
228
[ #81 ] : https://github.com/cybercog/laravel-ban/pull/81
Original file line number Diff line number Diff line change @@ -32,3 +32,14 @@ services:
32
32
working_dir : /app
33
33
volumes :
34
34
- ./:/app
35
+
36
+ php84 :
37
+ container_name : laravel-ban-lib-84
38
+ image : laravel-ban-lib-84
39
+ build :
40
+ context : ./
41
+ dockerfile : ./.docker/php/php84/Dockerfile
42
+ tty : true
43
+ working_dir : /app
44
+ volumes :
45
+ - ./:/app
You can’t perform that action at this time.
0 commit comments