How to Fix Maximum Execution Time of 30 Seconds Exceeded in Laravel

If you use Laravel jobs, you can meet an error with the message “Maximum execution time of 30 seconds exceeded”. This means that the job will be stopped after 30 seconds of execution. Laravel jobs have a timeout for execution set to 30 seconds by default. This value is the same as the default value … Read more

How to Use PHP CS Fixer in PhpStorm

PHP CS Fixer tool (PHP Coding Standards Fixer) can automatically reformat your PHP code to make it follow coding standards. The tool supports standards declared in PSR and Symfony community standards. Also you can add own coding style rules. PhpStorm has its own perfect tools for formatting and making code quality better. But if you … Read more

How to Install JetBrains ToolBox in Ubuntu 22.04

JetBrains developed their own tool that allows installing and and continual updating for all their products. If something goes wrong, you can always roll back the product version. This tool is JetBrains Toolbox. It is free. Also it can manage your licenses. You can enter a license in the tool and it will automatically detect … Read more

Task Scheduling in Laravel

Laravel framework supports console commands based on Symfony commands. You can create a command, add some functionality to it and run it in a command line. These commands can also be scheduled for regular execution using the Laravel scheduler. In this article we will explain how to do task scheduling in Laravel. We will create … Read more

How to Install Composer in Ubuntu 22.04

Composer is a powerful package manager for the PHP programming language. It can install and remove packages, update and control package versions, load PHP classes, and manage package dependencies. In this article I will explain how to install composer in Ubuntu 22.04. You can install it from official repositories or download the executable from the … Read more

How to Use PHP CodeSniffer in PhpStorm 

PHP CodeSniffer is a tool for checking code for compliance with selected coding standard. By default it supports these standards: PEAR, PSR1, PSR2, PSR12, Squiz, and Zend. If you want anything else, you can install additional standards. In this article I will explain how to install and use PHP CodeSniffer in PhpStorm. You can install … Read more

How to Install Laravel in Ubuntu 22.04

Frameworks and libraries did programming faster and easier. There are a lot of frameworks for PHP, but Laravel is most popular now. It has a fast request handler, database query builder, powerful CLI utility, comfortable wrappers for standard library functions, queue and caching mechanisms, and many thrid-party packages from thousands of developers. In this article … Read more

How to Install PhpStrom in Ubuntu 22.04

PhpStorm is the most popular IDE for Web development. It can be used as the main environment for backend development with PHP or JavaScript. All IDEs developed by JetBrains have a lot of tools for code refactoring, syntax and error highlighting, suggestions based on language documentation and a comfortable interface. In this article, I will … Read more