In part 1 of the series we started out with code style tools for the PHP backend as well as the Vue.js frontend. In part 2 we looked at a number of PHP code quality tools. Part 3 completes the series. This time we’ll have: a couple of tools focused on very specific areas of… Continue reading Static Analysis (Part 3): The wrap-up
Static analysis (Part 2): Code quality tools
In part 1 of the series we started out with code style tools. Checking things like indention and whitespace, that is the entry level to static code analysis. This time we go one step further. This time we are trying to gain deeper insights into our code. There are a million and one code quality… Continue reading Static analysis (Part 2): Code quality tools
Static analysis (Part 1): Code style tools
Trying to explain the issue of code style to a non-programmer usually results in blank stares and raised eyebrows. Arguing about trailing spaces seems like a complete waste of time. And rightly so! Code style rules are important, especially if you are working in a team. But you don’t want to talk about them in… Continue reading Static analysis (Part 1): Code style tools
Modern PHP Cheat Sheet aka Can I use?
2022-02-06: Now updated for PHP 8.1. PHP 8.0 was released at the end of 2020. It comes with an improved performance, some nice additions to the syntax and it also fixes some of the annoying quirks of its predecessors. Which is great … if it weren’t for that Huge Legacy Application you have to maintain,… Continue reading Modern PHP Cheat Sheet aka Can I use?
A single-page application (SPA) with Slim Framework and Vue.js
Inspired by a great and comprehensive article over at thecodingmachine.io we’ll try something similar today: building a single page application using the Slim Framework and Vue.js. In this tutorial we’ll see how to: set up the development environment with Docker build the application using the Slim Framework use Vue.js and the Vue router to build… Continue reading A single-page application (SPA) with Slim Framework and Vue.js