SlideShare a Scribd company logo
Create your own composer package
Why
• Easy to manage dependencies
• Easy to use with 3rd party library
normally `require`
<?php
require_once ‘pantip/pantip.class.php’;
require_once ‘twitter/twitter.class.php’;
require_once ‘facebook/facebook.class.php’;
require_once ‘instagram/instagram.class.php’;
the composer way
<?php
require_once ‘vendor/autoload.php’;
Create Package
$ composer init
// composer.json
{
"name": “clozed2u/hello-composer",
"authors": [
{
"name": "Lattapon Yodsuwan",
"email": "i@clozed2u.com"
}
],
"require": {}
}
Directory Structure
hello-composer
|
|__src
| |__Hello.php
|
|__tests
| |__HelloTest.php
|
|__composer.json
|
|__optional(circle.yml, .travis.yml, phpunit.xml)
Hello class
<?php
namespace Hello;
class Hello
{
public function sayAnything($message) {
return $message;
}
}
Hello Tests
<?php
use HelloHello;
class HelloTest extends PHPUnit_Framework_TestCase
{
public function testSayAnything() {
$said = new Hello();
$this->assertEquals(
"X JAPAN ROCK!!”,
$said->sayAnything("X JAPAN ROCK!!”)
);
}
}
Add autoload to composer
// composer.json
{
…,
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {"Hello": "src/"}
}
}
Push to git and release
Use package
$ composer install
// composer.json
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/clozed2u/hello-composer.git"
}
],
"require": {
"clozed2u/hello-composer": "1.0.0"
}
}
Push to packagist.org
$ composer require clozed2u/hello-composer
Don’t forget continuous integration
/clozed2u/hello-composer
Me
Name: Lattapon Yodsuwan
Github/Twitter: @clozed2u
Email: i@clozed2u.com
We are hiring

More Related Content

PDF
Dependency management with Composer
PPTX
Php psr standard 2014 01-22
PDF
Composer for Busy Developers - php|tek13
PPTX
PHP Dependency Management with Composer
PPT
Composer - Package Management for PHP. Silver Bullet?
PDF
Composer the right way - SunshinePHP
PPTX
Composer
Dependency management with Composer
Php psr standard 2014 01-22
Composer for Busy Developers - php|tek13
PHP Dependency Management with Composer
Composer - Package Management for PHP. Silver Bullet?
Composer the right way - SunshinePHP
Composer

What's hot (20)

PPTX
Composer | PHP Dependency Manager
PDF
Web development automatisation for fun and profit (Artem Daniliants)
PPTX
DevOps Hackathon - Session 1: Vagrant
PPTX
DevOps hackathon Session 2: Basics of Chef
PDF
Composer the Right Way - PHPBNL16
PDF
Composer The Right Way - 010PHP
PPT
Learn flask in 90mins
PDF
Dependency Management with Composer
PDF
Installing AtoM with Ansible
PDF
Deploying Symfony | symfony.cat
PDF
How to deploy PHP projects with docker
PPT
Write book in markdown
KEY
Composer
PDF
Composer the Right Way - MM16NL
PDF
Creating custom themes in AtoM
PDF
Composer the Right Way - PHPSRB16
KEY
Linecook - A Chef Alternative
PDF
Fluentd Meetup 2016 - ServerEngine Integration & Windows support
PDF
Write php deploy everywhere tek11
PDF
Composer the right way [SweetlakePHP]
Composer | PHP Dependency Manager
Web development automatisation for fun and profit (Artem Daniliants)
DevOps Hackathon - Session 1: Vagrant
DevOps hackathon Session 2: Basics of Chef
Composer the Right Way - PHPBNL16
Composer The Right Way - 010PHP
Learn flask in 90mins
Dependency Management with Composer
Installing AtoM with Ansible
Deploying Symfony | symfony.cat
How to deploy PHP projects with docker
Write book in markdown
Composer
Composer the Right Way - MM16NL
Creating custom themes in AtoM
Composer the Right Way - PHPSRB16
Linecook - A Chef Alternative
Fluentd Meetup 2016 - ServerEngine Integration & Windows support
Write php deploy everywhere tek11
Composer the right way [SweetlakePHP]
Ad

Viewers also liked (18)

PPTX
Mobgain
PDF
PropertyPanty Forsyth September 2015
PPT
Thermoelectrical Plant El Palito
DOC
Radhika Gupta Resume
PPTX
творчество агнии львовны барто
PDF
28905ip
PPTX
DOCX
Sets
PPTX
札幌へようこそ
PPTX
Presentation 13
PPSX
Rely on the fast delivery service of one off delivery solutions
PPTX
Jeopardy
PPTX
woman Harassment
PPTX
Final Ethics Case Presentation
DOC
Sanjay Patil 23
DOC
Updated CV Georges Maragel pers. 2016 achievements
PPTX
Ict presentation
Mobgain
PropertyPanty Forsyth September 2015
Thermoelectrical Plant El Palito
Radhika Gupta Resume
творчество агнии львовны барто
28905ip
Sets
札幌へようこそ
Presentation 13
Rely on the fast delivery service of one off delivery solutions
Jeopardy
woman Harassment
Final Ethics Case Presentation
Sanjay Patil 23
Updated CV Georges Maragel pers. 2016 achievements
Ict presentation
Ad

Similar to Create your own composer package (20)

PDF
Supercharging WordPress Development in 2018
PDF
関西PHP勉強会 php5.4つまみぐい
PDF
Mojolicious
PDF
Unleashing Creative Freedom with MODX (2015-07-21 @ PHP FRL)
PPTX
HackU PHP and Node.js
PDF
Unleashing Creative Freedom with MODX (2015-09-03 at GroningenPHP)
ODP
CodeIgniter PHP MVC Framework
PDF
Symfony2 revealed
PPS
Simplify your professional web development with symfony
PDF
Wordpress development: A Modern Approach
PPTX
Symfony2 Introduction Presentation
ODP
Drupal development
PDF
PHP and Databases
PDF
From CakePHP to Laravel
PPT
How to? Drupal developer toolkit. Dennis Povshedny.
PPT
Heavy Web Optimization: Backend
PPTX
18.register login
PDF
Symfony2 - WebExpo 2010
PDF
Symfony2 - WebExpo 2010
PDF
Frameworks da nova Era PHP FuelPHP
Supercharging WordPress Development in 2018
関西PHP勉強会 php5.4つまみぐい
Mojolicious
Unleashing Creative Freedom with MODX (2015-07-21 @ PHP FRL)
HackU PHP and Node.js
Unleashing Creative Freedom with MODX (2015-09-03 at GroningenPHP)
CodeIgniter PHP MVC Framework
Symfony2 revealed
Simplify your professional web development with symfony
Wordpress development: A Modern Approach
Symfony2 Introduction Presentation
Drupal development
PHP and Databases
From CakePHP to Laravel
How to? Drupal developer toolkit. Dennis Povshedny.
Heavy Web Optimization: Backend
18.register login
Symfony2 - WebExpo 2010
Symfony2 - WebExpo 2010
Frameworks da nova Era PHP FuelPHP

Recently uploaded (20)

PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
assetexplorer- product-overview - presentation
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Understanding Forklifts - TECH EHS Solution
PDF
System and Network Administraation Chapter 3
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
medical staffing services at VALiNTRY
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Digital Systems & Binary Numbers (comprehensive )
assetexplorer- product-overview - presentation
Which alternative to Crystal Reports is best for small or large businesses.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Computer Software and OS of computer science of grade 11.pptx
ai tools demonstartion for schools and inter college
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Designing Intelligence for the Shop Floor.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Understanding Forklifts - TECH EHS Solution
System and Network Administraation Chapter 3
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
How to Choose the Right IT Partner for Your Business in Malaysia
medical staffing services at VALiNTRY
2025 Textile ERP Trends: SAP, Odoo & Oracle
Design an Analysis of Algorithms I-SECS-1021-03
Odoo Companies in India – Driving Business Transformation.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free

Create your own composer package