We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa9560b commit 022b48cCopy full SHA for 022b48c
.gitignore
@@ -21,3 +21,5 @@ Homestead.yaml
21
Homestead.json
22
/.vagrant
23
.phpunit.result.cache
24
+
25
+Brewfile.lock.json
.tool-versions
@@ -0,0 +1 @@
1
+php 8.3.9
Brewfile
@@ -0,0 +1,5 @@
+brew "bison"
2
+brew "re2c"
3
+brew "gmp"
4
+brew "libsodium"
5
+brew "imagemagick"
Makefile
@@ -0,0 +1,9 @@
+install:
+ifneq ($(shell which brew),)
+ brew bundle
+endif
6
+ifneq ($(shell which asdf),)
7
+ asdf plugin add php
8
+ asdf install php
9
0 commit comments