php[podcast] Episode 23.8.1

by · September 4, 2023

0
 
php[podcast] Episode 23.8.1

 John and Eric share more of the day to day behind the scenes work that goes on at php[architect]. This episode of php is sponsored by JetBrains PhpStorm Join the Discord at https://phpa.me/discord Subscribe to the Magazine Today https://phpa.me/signup Twitter @phparch=> ‘Official PHP Architect’ @phptek => ‘php[tek] Conference’ @johncongdon=> Host John Congdon @shocm=> Host […]

Scheduling Tasks With CRON

by · September 1, 2023

0
 
Scheduling Tasks With CRON

      As developers, most of the time, our websites perform some kind of action based on a user clicking a button or typing some data, but there are some things we need to be able to do outside of the normal web request flow. For example, we should be running our backups at […]

Continuous Integration and Continuous Delivery

by · August 29, 2023

0
 
Continuous Integration and Continuous Delivery

    As developers, we’re always looking for ways to take our customer’s problems and turn them into solutions, and sometimes it can take a painfully long time to deliver those solutions. We might have multiple steps involved in the release process or only do a few releases every year, and that can slow us […]

Flowcharts For Developers With Mermaid js

by · August 25, 2023

0
 

One of the most important soft skills we can have as developers is being able to communicate how our code works. Other developers can dive into your code to see how it works, but this can be time-consuming, and your stakeholders most likely won’t be able to. What we need is some way to communicate […]

What’s New and Exciting in PHP 8 3

by · August 22, 2023

0
 
What's New and Exciting in PHP 8 3

    At the time of this recording, PHP 8.2 is in the beta release cycle so we can finally start to discuss what’s new and changed in the next release of PHP. In this article, we’ll discuss the timeline for the release and discuss some new features and changes we can expect to see. […]

Automated Refactoring With Rector

by · August 18, 2023

0
 

In our previous article, we discussed how to get started using code coverage to determine if our code has enough tests and one of the things I mentioned is how we should integrate this into our CI/CD pipeline but I didn’t say how. This articles exists to rectify that problem by providing you with two […]

Fixing Bugs With PHPStan

by · August 16, 2023

0
 
PHPStan

I don’t need to tell you, but as developers, bugs are a constant challenge. We can do everything in our power to test the code that we’re writing as we’re writing it. But that’s just not good enough. That’s because our changes affect other people’s code in ways we can’t expect, and their changes affect […]

php[podcast] Episode 23.6.1

by · June 6, 2023

0
 
php[podcast] Episode 23.6.1

John and Eric share more of the day to day behind the scenes work that goes on at php[architect]. This episode is sponsored by JetBrains PhpStorm Join the Discord at https://phpa.me/discord Subscribe to the Magazine Today https://phpa.me/signup Twitter @phparch @johncongdon @shocm Mastodon @editor@phparch.social @john@phparch.social @eric@phparch.social

Code Coverage Validation With Codecov

by ·

0
 

Every year we’re getting new versions of PHP, which is great but it means we’re going to have to constantly put time into upgrading our code as features are added, deprecated, and removed from the core language. Because our code base is only going to have more lines of code over time, it can be […]

Automating Our Tests With GitHub Actions

by · May 30, 2023

0
 

As developers, we need to automate as much as possible. This saves us time and money as well as keeps us from skipping steps. I used to have a project where I would run my tests manually before I push them into production. It started out taking 1 to 5 minutes and that was fine […]

« Previous Page Next Page »