Skip to content

Commit

Permalink
add support for laravel 9.*
Browse files Browse the repository at this point in the history
  • Loading branch information
smajti1 committed Feb 28, 2022
1 parent 6eddecd commit 4fa28d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.6.1] - 2022-02-28
### Added
- support `laravel` version `^9.0`

## [1.6.0] - 2021-05-22
### Added
- require min `php ^7.3` and `illuminate/http ^7.0`
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.3-fpm-alpine
FROM php:8.1-fpm-alpine

RUN apk update && apk add --no-cache \
bash \
Expand All @@ -7,7 +7,7 @@ RUN apk update && apk add --no-cache \
shadow \
$PHPIZE_DEPS

RUN pecl install xdebug-3.0.3 && docker-php-ext-enable xdebug
RUN pecl install xdebug-3.1.3 && docker-php-ext-enable xdebug

RUN usermod -u 1000 www-data
RUN chown www-data:www-data /var/www/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ simple laravel step-by-step wizard

| Version | Laravel Version | Php Version |
|---- |----|----|
| ^1.6 | 7.* || 8.* | ^7.3 || ^8.0 |
| ^1.6 | 7.* || 8.* || 9.* | ^7.3 || ^8.0 |
| ^1.4 | 6.* || 7.* || 8.* | ^7.2 || ^8.0 |
| 1.1 | 5.* | ^7.0 |

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"homepage": "https://github.com/smajti1/laravel-wizard",
"require": {
"php": "^7.3 || ^8.0",
"illuminate/http": "^7.0 || ^8.0"
"illuminate/http": "^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
Expand Down

0 comments on commit 4fa28d5

Please sign in to comment.