Getting Started With the Pest Testing Framework

by · October 19, 2023

0
 
Getting Started With the Pest Testing Framework

As a practitioner of test-driven development, I’m always looking for different ways to write test code faster. Sometimes, this comes as little things like learning a faster way to run my tests using a built-in editor setting, but sometimes it’s a whole new way to write my tests. In this article, we’re going to discuss […]

Let’s Get Our OSS Ready For Hacktoberfest 2023

by · September 27, 2023

0
 
Lets Get Our OSS Ready For Hacktoberfest 2023

As maintainers of open source projects, it’s important to try and bring people into our project so that we’re not the only ones maintaining the project. There are lots of ways to do this, like creating blog posts about the project, contributing articles to magazines, or talking about the project at conferences. Another option is […]

php[podcast] Episode 23.9.1

by · September 6, 2023

0
 
23.9.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 […]

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 […]

« Previous Page Next Page »