Join the revolution against complexity
Get your development environment ready in minutes. Choose your preferred setup method below.
Watch this step-by-step guide to set up XAMPP on Windows:
Visit apachefriends.org and download XAMPP for Windows
Run the installer as Administrator and follow the setup wizard
Open XAMPP Control Panel and start the Apache service
Watch this guide to set up LAMP stack on Ubuntu:
sudo apt update
sudo apt install apache2 php libapache2-mod-php php-mysql
sudo systemctl start apache2
sudo systemctl enable apache2
Watch this guide to set up MAMP on macOS:
Visit mamp.info and download MAMP for macOS
Drag MAMP to your Applications folder and run the installer
Open MAMP and click "Start Servers" to run Apache and MySQL
Watch this guide to install PHP on Windows:
Download PHP from windows.php.net
Extract to C:\php and add to your system PATH
Watch this guide to install PHP on Ubuntu:
sudo apt update
sudo apt install php
php -v
Watch this guide to install PHP on macOS:
brew install php
macOS comes with PHP pre-installed. Check version with:
php -v
Clone the PHPue repository to get started:
git clone git@github.com:PHPue/PHPue.git myapp
Or use HTTPS:
git clone https://github.com/PHPue/PHPue.git myapp
Move the myapp/www folder to your web server directory:
C:\xampp\htdocs\/var/www/html//Applications/MAMP/htdocs/Start Apache service through your control panel
Open browser and go to: http://localhost
Clone the PHPue repository to get started:
git clone git@github.com:PHPue/PHPue.git myapp
Or use HTTPS:
git clone https://github.com/PHPue/PHPue.git myapp
Open terminal/command prompt and navigate to your project directory:
cd myapp/www
Run this command:
php -S localhost:3000
Open browser and go to: http://localhost:3000
Your PHP development environment is ready. Start building amazing applications with PHPue!
Choose your OS above to see customized installation instructions with video tutorials.
We use Google Analytics to improve your experience. Your data is processed in accordance with our privacy policy.