SlideShare a Scribd company logo
How to install and use composer on
Ubuntu
By: Mohanad Shab Kaleia
May 29, 2016
Outline
●
What is composer
●
What is dependencies manager
●
How to install composer
●
How to install a package using composer
●
Update an available package
May 29, 2016
What is Composer
●
Composer is a dependencies management
tool for PHP,
●
Used to install packages, libraries, ..etc
needed for the project
●
Free and opensource
●
https://getcomposer.org/
May 29, 2016
What is dependencies manager?!
●
Manage your project’s packages and
libraries,
●
Packages Version compatibility between all
team members
●
It take care of download, update needed
packages,
May 29, 2016
Install Composer on Ubuntu
●
Step1 – installing the dependencies
– sudo apt-get install curl php5-cli git
●
Step 2 – download and install Composer
– curl -sS https://getcomposer.org/installer | sudo
php -- --install-dir=/usr/local/bin
--filename=composer
●
Step 3 – check if it installed successfully
– $ composer
May 29, 2016
Install a package
●
First what is the package you want to install?
●
http://packagist.org
●
For example we will use Slugify package
●
Slug: URL-friendly version
●
Run in the terminal:
– $ composer require cocur/slugify
May 29, 2016
Include the package into your project
require __DIR__ . '/vendor/autoload.php';
May 29, 2016
Update!
●
Update included packages:
– composer update
May 29, 2016
May 29, 2016
Design

More Related Content

ODP
Volunteering at YouSee on Technology Support
PDF
openSUSE Leap 15.0
PDF
Install pyautogui
PDF
FullStack TypeScript
PDF
Hybrid apps 101
PDF
Building and testing a desktop application written in Python
PDF
Drush for humans - SANDcamp 2013
PDF
Porting Puppet to OpenBSD
Volunteering at YouSee on Technology Support
openSUSE Leap 15.0
Install pyautogui
FullStack TypeScript
Hybrid apps 101
Building and testing a desktop application written in Python
Drush for humans - SANDcamp 2013
Porting Puppet to OpenBSD

Similar to What is Composer and how to install it on Ubuntu (20)

PPTX
Introducing composer - a php dependency manager
DOCX
"The Power of Composer"
PPTX
Composer
PPTX
Composer
PDF
composer_talk_20160209
PDF
Composer: Dependency Manager for PHP
PDF
Leveraging Composer in Existing Projects
PDF
Composer - The missing package manager for PHP
PDF
Dependency management with Composer
PPTX
AWT.pptx
PDF
PHP Composer Basics
PDF
Php Dependency Management with Composer ZendCon 2016
PDF
Composer Tutorial (PHP Hampshire Sept 2013)
PDF
Php Dependency Management with Composer ZendCon 2017
PDF
Using Composer with WordPress - 2.0
PPTX
Composer Lightning Talk
PDF
WordCamp Sacramento 2019: Modernizing Your Development Workflow Using Composer
PPTX
Composer | PHP Dependency Manager
PPTX
Nh php may 2014 - composer
Introducing composer - a php dependency manager
"The Power of Composer"
Composer
Composer
composer_talk_20160209
Composer: Dependency Manager for PHP
Leveraging Composer in Existing Projects
Composer - The missing package manager for PHP
Dependency management with Composer
AWT.pptx
PHP Composer Basics
Php Dependency Management with Composer ZendCon 2016
Composer Tutorial (PHP Hampshire Sept 2013)
Php Dependency Management with Composer ZendCon 2017
Using Composer with WordPress - 2.0
Composer Lightning Talk
WordCamp Sacramento 2019: Modernizing Your Development Workflow Using Composer
Composer | PHP Dependency Manager
Nh php may 2014 - composer
Ad

Recently uploaded (20)

PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Why Generative AI is the Future of Content, Code & Creativity?
PDF
Download FL Studio Crack Latest version 2025 ?
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
17 Powerful Integrations Your Next-Gen MLM Software Needs
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Weekly report ppt - harsh dattuprasad patel.pptx
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PPTX
Patient Appointment Booking in Odoo with online payment
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PPTX
assetexplorer- product-overview - presentation
Autodesk AutoCAD Crack Free Download 2025
Digital Systems & Binary Numbers (comprehensive )
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Why Generative AI is the Future of Content, Code & Creativity?
Download FL Studio Crack Latest version 2025 ?
Wondershare Filmora 15 Crack With Activation Key [2025
17 Powerful Integrations Your Next-Gen MLM Software Needs
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Design an Analysis of Algorithms II-SECS-1021-03
Weekly report ppt - harsh dattuprasad patel.pptx
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
Patient Appointment Booking in Odoo with online payment
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
wealthsignaloriginal-com-DS-text-... (1).pdf
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
Navsoft: AI-Powered Business Solutions & Custom Software Development
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Design an Analysis of Algorithms I-SECS-1021-03
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
assetexplorer- product-overview - presentation
Ad

What is Composer and how to install it on Ubuntu

  • 1. How to install and use composer on Ubuntu By: Mohanad Shab Kaleia
  • 2. May 29, 2016 Outline ● What is composer ● What is dependencies manager ● How to install composer ● How to install a package using composer ● Update an available package
  • 3. May 29, 2016 What is Composer ● Composer is a dependencies management tool for PHP, ● Used to install packages, libraries, ..etc needed for the project ● Free and opensource ● https://getcomposer.org/
  • 4. May 29, 2016 What is dependencies manager?! ● Manage your project’s packages and libraries, ● Packages Version compatibility between all team members ● It take care of download, update needed packages,
  • 5. May 29, 2016 Install Composer on Ubuntu ● Step1 – installing the dependencies – sudo apt-get install curl php5-cli git ● Step 2 – download and install Composer – curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer ● Step 3 – check if it installed successfully – $ composer
  • 6. May 29, 2016 Install a package ● First what is the package you want to install? ● http://packagist.org ● For example we will use Slugify package ● Slug: URL-friendly version ● Run in the terminal: – $ composer require cocur/slugify
  • 7. May 29, 2016 Include the package into your project require __DIR__ . '/vendor/autoload.php';
  • 8. May 29, 2016 Update! ● Update included packages: – composer update