Home  >  Article  >  Backend Development  >  Install PHP and composer in local machine without XAMPP or MAMP

Install PHP and composer in local machine without XAMPP or MAMP

Linda Hamilton
Linda HamiltonOriginal
2024-09-24 22:15:43732browse

Install PHP and composer in local machine without XAMPP or MAMP

A Comprehensive Guide to Installing PHP and Composer on Your Machine

PHP is one of the most popular server-side scripting languages, widely used for web development. Composer, on the other hand, is a dependency manager for PHP that simplifies managing libraries and packages in your projects. In this guide, we’ll walk through the steps to install PHP and Composer natively on your machine, highlighting the advantages of this approach over using bundled solutions like XAMPP or MAMP.

Prerequisites

Before we begin, make sure your system meets the following requirements:

  • A working internet connection.
  • Administrative privileges on your machine.

Step 1: Installing PHP

Installing PHP natively provides better performance and is a more professional approach, especially for production environments. Here’s how to do it across different operating systems:

On Windows

  1. Download PHP:

    • Visit the PHP Downloads page and download the latest version of PHP. Choose the appropriate version (Thread Safe) for your system.
  2. Extract PHP:

    • Extract the downloaded ZIP file to a directory of your choice, such as C:php.
  3. Configure Environment Variables:

    • Open the System Properties (Right-click on This PC > Properties > Advanced system settings).
    • Click on “Environment Variables.”
    • Under “System variables,” find the “Path” variable and click “Edit.”
    • Add the path to your PHP directory (e.g., C:php).
  4. Verify Installation:

    • Open Command Prompt and type php -v. You should see the PHP version displayed.

On macOS

  1. Install Homebrew (if not installed):

    • Open Terminal and run the following command:
     /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
  2. Install PHP:

    • Run the following command in Terminal:
     brew install php
    
  3. Verify Installation:

    • After installation, check the PHP version with:
     php -v
    

On Linux

  1. Update Package Index:

    • Open Terminal and run:
     sudo apt update
    
  2. Install PHP:

    • For Ubuntu, run:
     sudo apt install php
    
  • For CentOS, run:

     sudo yum install php
    
  1. Verify Installation:

    • Check the PHP version:
     php -v
    

Why Native Installation?

While tools like XAMPP and MAMP provide convenient ways to set up a development environment, they may introduce unnecessary overhead and complexity. Native installations are generally more efficient, allowing for better resource management, performance tuning, and a more granular understanding of the PHP environment.

Step 2: Installing Composer

Composer can be installed globally, allowing you to manage dependencies for all your PHP projects.

On Windows

  1. Download Composer Installer:

    • Visit the Composer Download page and download the Composer-Setup.exe file.
  2. Run the Installer:

    • Execute the downloaded file and follow the instructions. It will automatically detect your PHP installation.
  3. Verify Installation:

    • Open Command Prompt and type:
     composer -V
    

On macOS and Linux

  1. Download Composer:

    • Open Terminal and run the following command:
     curl -sS https://getcomposer.org/installer | php
    
  2. Move Composer to a Global Directory:

    • After the download, move Composer to a directory in your PATH:
     sudo mv composer.phar /usr/local/bin/composer
    
  3. Verify Installation:

    • Check the Composer version:
     composer -V
    

Conclusion

You have successfully installed PHP and Composer on your machine! By opting for native installations, you ensure better performance and a more professional setup. Composer will allow you to easily manage libraries and dependencies, keeping your projects organized and up-to-date.

Feel free to explore the official documentation for more advanced usage and best practices:

  • PHP Documentation
  • Composer Documentation

Happy coding!


Feel free to comment any parts of the article!

The above is the detailed content of Install PHP and composer in local machine without XAMPP or MAMP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn