codebase



Domain Driven Design with Laravel 9

  • avatar
Preview post image

Modern web frameworks teach you to take one group of related concepts and split it across multiple places throughout your codebase. Laravel is a robust framework with a big community behind it. Usually it's standard structure is enough for most starting projects.

Building scalable applications, instead, requires a different approach. Have you ever heard from a client to work on controllers or review the models folder? Probably never - they ask you to work on invoicing, clients management or users. These concept groups are called domains.

Install PHPStan and configure for Laravel application

  • avatar
  • 12.4K Views
  • 12 Likes
  • 3 mins read
Preview post image

Unlike compiled languages, in PHP if you make a mistake, the program will crash when the line of code with the mistake is executed. When testing a PHP application, whether manually or automatically, developers spend a lot of their time discovering mistakes that wouldn’t even compile in other languages, leaving less time for testing actual business logic.

Domain Driven Design with Laravel 9: User domain

  • avatar
  • 9.6K Views
  • 16 Likes
  • 11 mins read
Preview post image

Modern web frameworks take one group of related concepts and split it across multiple places throughout your codebase. Laravel provides a very clear structure with large variety of tools to make the development easier and faster. Along with the huge community it makes Laravel a great option for most starting projects.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

Conventional commits

  • avatar
  • 2.3K Views
  • 15 Likes
  • 3 mins read
Preview post image

The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of.

The commit message should be structured as follows:

<type>[optional scope]: <description>

[optional body]

[optional footer]

Getting Started with Git operations and version control

  • avatar
  • 1.4K Views
  • 1 Like
  • 5 mins read
Preview post image

Git is a popular version control system that helps developers track changes in their code, collaborate with others, and manage project history efficiently. Created by Linus Torvalds in 2005, Git has become an essential tool for software development. It allows teams to work on different parts of a project simultaneously without overwriting each other's changes. By using Git, developers can keep their projects organized, track progress, and revert to previous versions when necessary.

Optimizing software delivery with DORA metrics

  • avatar
  • 323 Views
  • 1 Like
  • 3 mins read
Preview post image

In software development, delivering high-quality products efficiently is essential. The DORA framework provides metrics designed to help teams evaluate and improve their delivery practices. Developed by DevOps Research and Assessments, these metrics offer clear insights into key performance areas. Using the DORA framework can help your team identify weaknesses, optimize workflows, and achieve better results in your software projects. Let's explore what these metrics are and how they can help your team deliver better software, faster.