-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04e7a46
commit d3cf44a
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
### 1.0.6: 2022-11-28 | ||
|
||
* Remove derepcated homebrew/dupes and homebrew/versions taps (part of homebrew/core) | ||
* Remove deprecated LaunchAgents | ||
* Change deprecated homebrew/homebrew-php to shivammathur/php | ||
* Fix install commands for [email protected] | ||
|
||
### 1.0.5: 2022-08-16 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,11 +141,8 @@ sudo ln -sfnv ${HOMEBREW_PATH}/etc/nginx/sites-available/default ${HOMEBREW_PATH | |
sudo cp "${HOMEBREW_PATH}/Cellar/nginx/1.23.1/html/index.html /var/www/" | ||
sudo chown -R $(whoami):staff /var/www | ||
echo "${yellow}Installing PHP.${txtreset}" | ||
brew tap homebrew/homebrew-php | ||
brew install [email protected] | ||
mkdir -p ~/Library/LaunchAgents | ||
cp /usr/local/opt/[email protected]/[email protected] ~/Library/LaunchAgents/ | ||
sudo launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php\@7.4.plist | ||
brew tap shivammathur/php | ||
brew install shivammathur/php/php@@7.4 | ||
lsof -Pni4 | grep LISTEN | grep php | ||
sudo ln -s /System/Volumes/Data/opt/homebrew/etc/php /etc/PHP | ||
sudo echo "export PATH=\"\$(brew --prefix [email protected])/bin:\$PATH\"" >> ~/.bash_profile | ||
|