Categories
PHP

Run Composer Commands Programmatically

Don’t you want to manage your dependencies programmatically? Why do you need it? There could be certain reasons. Some of these are the following. The most common reason; you don’t have access to the terminal and you want to manage your application’s dependencies programmatically. As a web developer, if you have worked with Laravel; you […]

Categories
PHP

Manage Running Processes

Do you want to manage running processes on your server? If your answer is yes, This article is for you. You may have heard about Symfony/Process. You can say it’s a replacement for shell_exec and exec functions. So we need to play with Symfony Process to achieve our target. I am assuming that you have […]