Coding standards guide the programmers to write code that can be easily read by other developers to understand every part of it effortlessly. So WordPress invent their own coding standard to make consistent between all developer’s code. In this article, we will discuss PHP Coding Standards and how we can verify our codes using PHPCS. […]
Author: Sourov Roy
Hello, I'm Sourov, I am a Software Engineer of weDevs.
I spent most of the time coding really interesting program using PHP and JavaScript. Though Laravel is my favorite tool but sometimes I like to play with WordPress too.
Unit Testing for Your WordPress Plugin
Unit testing is one of the software testing types which includes the initial testing phase where the smallest components or the modules of a software are tested individually. If you want to reduce your WordPress plugin bugs from production then this is the technic that will help you most. So you have a plugin and […]
Laravel App CI/CD using GitHub Actions
Continuous integration becomes mandatory when every second of your application uptime is important. By using Continuous Integration (CI) we can test our codes are working or not through PHPUnit. When all of your tests are pass then you need to deploy the application. Why GitHub Actions? If your project is in GitHub then it is […]