Skip to content

Commit

Permalink
chore: Add new dependencies and updated PHP version
Browse files Browse the repository at this point in the history
- Add new dependencies to Brewfile
- Update PHP version in .tool-versions
- Create Makefile for installation commands
  • Loading branch information
johnnyhuy committed Jul 28, 2024
1 parent aa9560b commit 022b48c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ Homestead.yaml
Homestead.json
/.vagrant
.phpunit.result.cache

Brewfile.lock.json
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
php 8.3.9
5 changes: 5 additions & 0 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
brew "bison"
brew "re2c"
brew "gmp"
brew "libsodium"
brew "imagemagick"
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

install:
ifneq ($(shell which brew),)
brew bundle
endif
ifneq ($(shell which asdf),)
asdf plugin add php
asdf install php
endif

0 comments on commit 022b48c

Please sign in to comment.