Skip to content

Commit 022b48c

Browse files
committed
chore: Add new dependencies and updated PHP version
- Add new dependencies to Brewfile - Update PHP version in .tool-versions - Create Makefile for installation commands
1 parent aa9560b commit 022b48c

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ Homestead.yaml
2121
Homestead.json
2222
/.vagrant
2323
.phpunit.result.cache
24+
25+
Brewfile.lock.json

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
php 8.3.9

Brewfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
brew "bison"
2+
brew "re2c"
3+
brew "gmp"
4+
brew "libsodium"
5+
brew "imagemagick"

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
install:
3+
ifneq ($(shell which brew),)
4+
brew bundle
5+
endif
6+
ifneq ($(shell which asdf),)
7+
asdf plugin add php
8+
asdf install php
9+
endif

0 commit comments

Comments
 (0)