DEV Community

Cover image for 7 Laravel Packages to Improve Coding Standards and Reduce Bugs
Nilanth
Nilanth

Posted on • Updated on • Originally published at Medium

7 Laravel Packages to Improve Coding Standards and Reduce Bugs

Packages to analyse coding standards and reduce bugs

Frustrated with fixing the same kind of issues and spending more time to improve your App coding standard? This is a common issue for larger apps with more number developers working on it. We spend more time maintaining the coding standard across the team and reducing bugs, To make this simple we have a few packages to automate these.

As we all know, the Laravel community is growing rapidly daily, and the packages developed for Laravel are also increasing. We will look into a few packages in this article to improve PHP coding standards and automate some tasks that were done manually.

Larastan

larastan

Larastan is a Coding Standards Fixer tool, It's a PHPStan wrapper for Laravel. Larastan focuses on finding errors in your code. It catches whole classes of bugs even before you write tests for the code.

Highlights

  1. Adds static typing to Laravel to improve developer productivity and code quality.
  2. Supports most of Laravel's magic methods.
  3. Discovers bugs in your code.

Github - 4.1K ⭐️

PHPStan

PHPStan is a static code analysis tool, It focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code. It moves PHP closer to compiled languages in the sense that the correctness of each line of the code can be checked before you run the actual code.

Highlights

  1. Find bugs before they reach production.
  2. Gradual Integration
  3. Legacy compatibility
  4. Third-party framework integrations

phpstan

Github - 11.2K ⭐️

PHP CodeSniffer

PHP CodeSniffer is also a coding standard tool. It tokenizes PHP files and detects violations of a defined set of coding standards. 

PHP CpdeSniffer is a set of two PHP scripts. The main phpcs script tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard, and a second phpcbf script automatically corrects coding standard violations. PHP CodeSniffer is an essential development tool that ensures your code remains clean and consistent.

php-sniffer

Github - 9.6K ⭐️

Phan

Phan is a static analyzer for PHP. Phan prefers to avoid false positives and attempts to prove incorrectness rather than correctness. 

Phan looks for common issues and will verify type compatibility on various operations when type information is available or can be deduced. Phan has a good understanding of flow control and can track values in a few use cases (e.g. arrays, integers, and strings).

Github - 5.3K ⭐️

PHP Inspections

inspection-php

PHP Inspections is a static code analyzer and code review tool for PhpStorm IDE.
 

Highlights

  1. Architecture related issues
  2. Weak types of control and possible code construct simplifications
  3. Performance issues
  4. Validation of magic methods usage
  5. Validation of exception handling workflow
  6. Compatibility issues
  7. Variety of time-consuming bugs
  8. Security issues

Github - 1.3K ⭐️

PHP Insights

php-insights

PHP Insights is a static analysis tool of your code directly from your terminal. By running a single command it displays the Quality of Code, Complexity of Code, Architecture and Coding Style.

Highlights

  1. Analysis of code quality and coding style
  2. Beautiful overview of code architecture and its complexity
  3. Designed to work out-of-the-box with Laravel, Symfony, Yii, Magento, and more
  4. Contains built-in checks for making code reliable, loosely coupled, simple, and clean.

terminal-insights

Github - 4.7K ⭐️

PEST

pest

Pest is an elegant PHP Testing Framework with a focus on simplicity. It has a good interface to display test results and easily understandable APIs to write tests. 

Pest also has IDE plugins for PHP Strom and VS Code.

pest-terminal

Github - 5.1K ⭐️

Laravel Pint

pint

Laravel Pint is an opinionated PHP code style fixer for minimalists. Pint is built on top of PHP-CS-Fixer and makes it simple to ensure that your code style stays clean and consistent. Pint is a new addition to the Laravel framework.

It will be available pre-installed on fresh installs.
By default, Pint does not require any configuration and will fix code style issues in your code by following the opinionated coding style of Laravel.

pint-terminal

Github - 2K ⭐️

Conclusion

There are multiple open source tools to maintain coding standards and reduce bugs in Laravel. Choose a tool from above that best fits your project and environment.

Thank you for reading.

Get more updates on Twitter.

eBook

Debugging ReactJS Issues with ChatGPT: 50 Essential Tips and Examples

ReactJS Optimization Techniques and Development Resources

More Blogs

  1. Use Vite for React Apps instead of CRA
  2. Twitter Followers Tracker using Next.js, NextAuth and TailwindCSS
  3. Don't Optimize Your React App, Use Preact Instead
  4. How to Reduce React App Loading Time By 70%
  5. Build a Portfolio Using Next.js, Tailwind, and Vercel with Dark Mode Support
  6. No More ../../../ Import in React
  7. 10 React Packages with 1K UI Components
  8. 5 Packages to Optimize and Speed Up Your React App During Development
  9. How To Use Axios in an Optimized and Scalable Way With React
  10. 15 Custom Hooks to Make your React Component Lightweight
  11. 10 Ways to Host Your React App For Free
  12. How to Secure JWT in a Single-Page Application

Top comments (1)

Collapse
 
mjcoder profile image
Mohammad Javed

Thanks for the recommendations :)