Peter Fox Profile picture
Laravel/PHP developer. Maintainer of https://t.co/qz4djbc9vH… and https://t.co/Z3vyoKItYy…
Nov 19, 2022 8 tweets 2 min read
As a Laravel Dev who consistently uses Macs, here's a 🧵 of little tips I have for you when using the command line

#macos #laravel #symfony #phpc 1. If you need to find a command you previously used CTRL + R will let you search for old commands in your ~/.zsh_history file.
Nov 14, 2022 14 tweets 9 min read
So for those who wanted to know about my initial experience with @phpstorm and using @github's codespaces. Lets just say it wasn't great. Here's my run-through of the first hour or so.

#php #codespaces #github
@phpstorm @github Installed Jetbrains Gateway, First miss-step was Github CLI was too old a version, the error message for this was not clear at all and vaguely mentioned a socket not being available.
Nov 13, 2022 6 tweets 4 min read
As a PHP developer, there are a great number of static tools that you can use. Here are four off the top of my head that I regularly go to:

#php #laravel 🧵 @phpstan, this tool is great for finding little oddities in your code you might not even notice yourself. Things like unused variables or impossible scenarios. Larastan extends it for Laravel apps to handle some of the magic involved. github.com/nunomaduro/lar…