As developers, we spend a lot of time testing the code that we’ve written. Generally, this is a manual process where we write a little code and then manually enter some inputs to verify we get what we expect. What if instead of doing the same manual testing over and over again, we used a […]
The post Automated Testing Using PHPUnit appeared first on php[
One of the more annoying problems when working with data is creating a system to save data from RAM into long-term storage so it can be loaded back into RAM and processed at a later time. There are thousands of different file formats that allow us to take structured data, write it to storage, and […]
The post Serializing Data In PHP appeared first on php[architect]
Onboarding a new developer to our team can be a complicated process. They need to fill out HR paperwork, get a development environment, and find a comfy place to work (along with a caffeinated beverage). Then someone needs to fill their head with all of the institutional knowledge they need to do their job. There […]
The post Everything You Need to Know About Pair Programming appeared firs
![php[podcast] Episode 23.2.1](https://www.cdn5.niftycent.com/d/e/7/7/l/d/5/php-podcast-episode-23-2-1.webp)
Join the Discord at https://phpa.me/discord Get your early bird php[tek] tickets before the price goes up at https://tek.phparch.com Subscribe to the Magazine Today https://phpa.me/signup Join us at php[tek] 2023 php[tek] 2023 Twitter @phparch @phptek @johncongdon @shocm Mastodon phparch.social@editor phparch.social@tek phparch.social@john phparch.social@eric
The post php[podcast] Episode 23.2.1

The post Knowledge Crunching appeared first on php[architect].
https://www.phparch.com/magazine/2023/02/knowledge-crunching/
One of the most powerful parts of writing web applications in the modern era is how we can quickly create an application that does a lot with just a little bit of our code by using open-source packages. Have you ever wanted to contribute a package to the community for others to use? Maybe you […]
The post Creating a PHP Library With Packagist appeared first on
In the darker days of web application development, we essentially had two options for working with dependencies. The first is that we could put all the dependencies in a directory of our application and use them from there. This worked but could cause our application to balloon in size. The other option was to rely […]
The post Getting Out of PHP Dependency Hell With Composer appeared first
![php[podcast] Episode 2023.1.1](https://www.cdn5.niftycent.com/d/1/p/o/Q/4/x/php-podcast-episode-2023-1-1.webp)
Subscribe to the Magazine Today https://phpa.me/signup Join us at php[tek] 2023 php[tek] 2023 Twitter @phparch @phptek @johncongdon @shocm Mastodon phparch.social@editor phparch.social@tek phparch.social@john phparch.social@eric
The post php[podcast] Episode 2023.1.1 appeared first on php[architect].

Happy New Year from everyone here at PHP Architect. We hope that you are ready to make 2023 your best year yet, and we want to be a HUGE part of your journey.
The post PHP is Standing Tall appeared first on php[architect].
https://www.phparch.com/magazine/2023/01/php-is-standing-tall/
As developers, we have times when we get to process a lot of data. Sometimes it’s a few kilobytes of data and we don’t need to worry about the performance because computers are so fast. When we’re looking at gigabytes or more of data then we need to be aware of the performance of our […]
The post Queues With PHPs SplQueue appeared first on php[arch