Blog

Have you ever wondered how to keep track of all the technical debt in your software projects? In this post, we will explore the concept of Technical Debt Records and how they can improve the way we manage the technical debt of our projects

Read More...

Understanding the business is a fundamental requirement for building successful software solutions. As programmers and software engineers, we must understand how companies operate within their business. By analyzing the business domain, we can distill the different subdomains. This will help us to design good systems that are aligned with the business goals, so consequently, this will ensure the success of the business.

Read More...

Continuous Integration and Continuous Deployment or CI/CD have become a key tool for software development. CI/CD makes it easy to deliver code frequently, accurately and with the best quality possible since it removes the requirement of manual testing and deployment.

Read More...

In the competitive landscape of software development, maintaining top-notch code quality is crucial. Bugs not only waste valuable time but can also cost companies millions. This is where static analysis tools like PHPStan come into play. PHPStan is a game-changer for PHP developers, enabling them to detect potential issues in their code before it even runs. By thoroughly analyzing your codebase, PHPStan identifies bugs, enforces coding standards, and highlights areas for improvement.

Read More...

Ensuring that infrastructure services, like Repositories or Cache implementations, are reliable is crucial for building sturdy software. In our previous post, Testing Services in Hexagonal Architecture, we talked about unit testing. Now, let's dive into contract testing to check how infrastructure services works with services from other layers. By making sure that different implementations stick to their contracts consistently, we can keep the system reliable without needing complicated setups. This method helps make sure infrastructure services are dependable and that everything integrates smoothly throughout the system.

Read More...