Skip to content

Commit

Permalink
Add support for PHP 8.2 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrelan authored May 9, 2023
1 parent 1b33894 commit 70a4879
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif
DRUSH=$(EXEC) ./bin/drush
DRUSH_INSTALL=$(DRUSH) -y site:install --account-pass=password
GIT_SWITCH=cd app && git switch
PHP_VERSION=8.0
PHP_VERSION=8.2

clean: composer minimal login

Expand Down Expand Up @@ -47,15 +47,15 @@ switch:
$(GIT_SWITCH) 9.4.x
make clean

9.5: php8.0
9.5: php8.1
$(GIT_SWITCH) 9.5.x
make clean

10.0: php8.1
$(GIT_SWITCH) 10.0.x
make clean

10.1: php8.1
10.1: php8.2
$(GIT_SWITCH) 10.1.x
make clean

Expand All @@ -67,3 +67,6 @@ php8.0:

php8.1:
make start -e PHP_VERSION=8.1

php8.2:
make start -e PHP_VERSION=8.2

0 comments on commit 70a4879

Please sign in to comment.