<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Manishkumar Prajapati</title>
    <description>The latest articles on DEV Community by Manishkumar Prajapati (@manish_prajapati).</description>
    <link>https://dev.to/manish_prajapati</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3717511%2F34992019-15b8-4e74-8f51-c67786f60795.jpg</url>
      <title>DEV Community: Manishkumar Prajapati</title>
      <link>https://dev.to/manish_prajapati</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/manish_prajapati"/>
    <language>en</language>
    <item>
      <title>Tired of Installing PHP, Composer &amp; MySQL for Every Project? I Built PHPBox</title>
      <dc:creator>Manishkumar Prajapati</dc:creator>
      <pubDate>Thu, 11 Jun 2026 04:40:09 +0000</pubDate>
      <link>https://dev.to/manish_prajapati/tired-of-installing-php-composer-mysql-for-every-project-i-built-phpbox-460e</link>
      <guid>https://dev.to/manish_prajapati/tired-of-installing-php-composer-mysql-for-every-project-i-built-phpbox-460e</guid>
      <description>&lt;p&gt;🚀 After weeks of planning, architecture design, and development, I'm excited to introduce &lt;strong&gt;PHPBox&lt;/strong&gt;!&lt;/p&gt;

&lt;p&gt;A universal PHP development environment manager that lets you create and run PHP applications without installing:&lt;/p&gt;

&lt;p&gt;❌ PHP&lt;br&gt;
❌ Composer&lt;br&gt;
❌ Apache&lt;br&gt;
❌ Nginx&lt;br&gt;
❌ MySQL&lt;br&gt;
❌ MariaDB&lt;br&gt;
❌ XAMPP / WAMP / MAMP / Laragon&lt;/p&gt;

&lt;p&gt;The only requirement:&lt;/p&gt;

&lt;p&gt;✅ Docker&lt;/p&gt;
&lt;h3&gt;
  
  
  What can PHPBox do?
&lt;/h3&gt;

&lt;p&gt;🔹 Create new projects&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;phpbox create laravel blog
phpbox create wordpress website
phpbox create symfony crm
phpbox create yii portal
phpbox create cakephp erp
phpbox create codeigniter inventory
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;🔹 Run existing projects&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone project
&lt;span class="nb"&gt;cd &lt;/span&gt;project

phpbox init
phpbox start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;🔹 Auto-detect frameworks&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Laravel&lt;/li&gt;
&lt;li&gt;Symfony&lt;/li&gt;
&lt;li&gt;CodeIgniter&lt;/li&gt;
&lt;li&gt;CakePHP&lt;/li&gt;
&lt;li&gt;Yii&lt;/li&gt;
&lt;li&gt;WordPress&lt;/li&gt;
&lt;li&gt;Drupal&lt;/li&gt;
&lt;li&gt;Magento&lt;/li&gt;
&lt;li&gt;Joomla&lt;/li&gt;
&lt;li&gt;Core PHP&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🔹 Manage development environments&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PHP Version Switching&lt;/li&gt;
&lt;li&gt;Database Management&lt;/li&gt;
&lt;li&gt;Composer Integration&lt;/li&gt;
&lt;li&gt;phpMyAdmin&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;li&gt;Mailpit&lt;/li&gt;
&lt;li&gt;SSL Support&lt;/li&gt;
&lt;li&gt;Docker-based Isolation&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why I built this?
&lt;/h3&gt;

&lt;p&gt;As a PHP developer, I was tired of spending time configuring environments every time I switched projects.&lt;/p&gt;

&lt;p&gt;I wanted a tool where developers could simply:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;phpbox start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and start coding immediately.&lt;/p&gt;

&lt;p&gt;No setup headaches.&lt;br&gt;
No dependency conflicts.&lt;br&gt;
No "works on my machine" issues.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tech Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Docker&lt;/li&gt;
&lt;li&gt;Docker Compose&lt;/li&gt;
&lt;li&gt;Typer&lt;/li&gt;
&lt;li&gt;Rich&lt;/li&gt;
&lt;li&gt;Jinja2&lt;/li&gt;
&lt;li&gt;YAML&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is just the beginning. My vision is to make PHPBox the "npm experience for PHP developers."&lt;/p&gt;

&lt;p&gt;⭐ GitHub:&lt;br&gt;
&lt;a href="https://github.com/manishkumar1601/phpbox/" rel="noopener noreferrer"&gt;https://github.com/manishkumar1601/phpbox/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love feedback from the PHP, Laravel, WordPress, Symfony, and open-source communities.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>opensource</category>
      <category>php</category>
    </item>
  </channel>
</rss>
