SlideShare a Scribd company logo
1 of 87
Download to read offline
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 1
PHP Dependency
Management with
Composer
Clark Everetts
Sr. Professional Services Consultant
23 October 2017
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 2
Slides, Joind.in, and Stuff
• Rate & comment: https://joind.in/talk/973d7
• Slides: https://www.slideshare.net/clarkphp
• Tweets: #zendcon2017
• @clarkphp
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 3
Why are we here? Our Agenda
• What is it? What problem does it solve?
• What does it actually do?
• Composer.json & composer.lock
• Semantic Versioning, Version Constraints
• Packages, Repositories and Packagist
• Do’s and Don’ts / Best Practices
• Create a Private Repository
Cool logo!
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 4
Assumption: You’ve seen JSON
(JavaScript Object Notation)
Jason is scary.
JSON is not.
*https://en.wikipedia.org/wiki/Jason_Voorhees
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 5
INTRODUCTION/
BACKGROUND
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 6
Composer is …
… a per-project PHP
dependency
manager*
*(plus autoloader)
That’s all.
Any questions?
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 7
… a per-project
PHP
dependency
manager
Let’s break it down.
Composer is …
* Paraphrased from
https://getcomposer.org/doc/00-intro.md
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 8
PHP Package Dependencies
… a per-project PHP dependency manager
• PHP project-related files only
• Can include assets like Javascript, images, XML, CSS, etc.
• But not for managing Javascript or CSS libraries
• Primarily a development - not production – tool (“can” be prod*)
*but generally,
I’m not a fan
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 9
What’s a “dependency?”
… a per-project PHP dependency manager
You wrote these to
reuse across apps.
3rd-Party
ZF, Laravel, OAuth2,
Symfony
Your Project
DEPENDENCIES,
PACKAGES,
LIBRARIES
“Project” == Application
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 10
Dependencies can have dependencies
… a per-project PHP dependency manager
Your Project “Project” == Application == Library == Package
DEPENDENCIES,
PACKAGES,
LIBRARIES
“I need
A, B, C, D”
A B C D
“I need
E” E F
“I need
E”
Composer obtains all
specified dependencies.
HG
“I need G,
H”
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 11
Want to manage that yourself?
“I need these”
“I need
this”
A B C
E
D
F
G H
“I
need
that”
“I need the
other”
You’d need to:
• Identify the direct dependencies of your project
• Identify their dependencies, and all sub-dependencies
• Locate the source code (PEAR, Git, Subversion, zip/gzip/bz2)
• Download and install all of the source code
• Make sure all the versions are compatible
• Check for updates to any of the dependencies
• Do it all again when updates are available
With your guidance,
Composer does all
this for you.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 12
Different versions of the same package
… a per-project PHP dependency manager
Application
A
Application
B
Lib Y
1.0.1
Lib X
2.4.1
Lib Y
1.0.1
Lib X
1.2.0
Two projects, each using a
different version of the same
dependencies.
Composer is not a global
“package manager”
PEAR, APT, YUM,
Include_path
Why do this?
• Application A is stable, new features or bug fixes not relevant
• Working with development version: Dev, Alpha, Beta, RC
• Update cycle for App A !== App B
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 13
To Reiterate: per-project; not global
… a per-project PHP dependency manager
Application
A
Application
B
Lib Y
1.0.1
Lib X
2.4.1
Lib Y
1.0.1
Lib X
2.4.1
Two projects, each using
same version of the same
dependencies.
Each project has it’s own copy.
• Like a PHAR (PHP Archive) file, all dependencies are available in the application
directory tree.
• Updates to the dependencies of one application do not affect another.
• .gitattribute notwithstanding, potentially many copies of the exact same library
source code on disk.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 14
Composer is…
… a per-project PHP dependency manager
• Knows what packages your application or library
depends upon
• Obtains those packages, and all of their
dependencies, and installs appropriate versions of
them into your project (and local cache)
• When requested, checks for updates compatible
with your project, and downloads them into your
project (and local cache)
• Allows you to pin multiple applications/libraries to
the same or different versions of the packages they
use.
Composer makes it
easier to manage
application
dependencies.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 15
Now What?
Answered some questions, raised others:
• How do we inform Composer what dependencies a
project has?
– composer.json, composer.lock
• Where does it put the dependencies in the project?
– vendor folder
• Where does Composer obtain dependencies?
– repositories
• How does the project access to those
dependencies when it needs them?
– autoloading
• How do we install Composer and start using it?
A closer look…
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 16
INSTALL COMPOSER
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 17
Installation
• Windows
– https://getcomposer.org/Composer-Setup.exe
– https://getcomposer.org/doc/00-intro.md#installation-windows
– Or, GitBash, and follow *nix instructions ( This is what I do.)
• *nix and IBM i PASE
– https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx
– Command line instructions on https://getcomposer.org/download/
• Manual Download on same page https://getcomposer.org/download/
• IBM i
– CALL QP2TERM (or ssh), and follow *nix above
– Before installing, check KB article on SSL peer certificate verification:
– https://support.zend.com/hc/en-us/articles/205679027-Add-a-trusted-
certificate-authority-to-IBM-i-for-PHP-5-6 (I think downloading via browser
from https://curl.haxx.se/docs/caextract.html & dropping onto IFS is better)
• Once installed, updates are easy:
– $ composer self-update
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 18
Help is available
• Get help
– $ composer help (top-level help)
– $ composer list (list available commands)
– $ composer help <command> (help on specified command)
• Documentation
– Check your PATH https://getcomposer.org/doc/00-intro.md#using-
composer
– https://getcomposer.org/doc/01-basic-usage.md
– https://getcomposer.org/doc/03-cli.md (command line interface)
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 19
COMPOSER.JSON &
COMPOSER.LOCK
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 20
General Tips
• Don’t edit composer.json files. Use the command line tooling!
– $ composer require zendframework/zend-crypt
• Add require entry for the component, specifying the latest stable release that does not
conflict with other requirements, (gets development dependencies by default)
– $ composer require --dev phpunit/phpunit
• Specify development requirements (libraries needed to edit/test the dependency)
– $ composer require --update-no-dev monolog/monolog
• Add package, with no dev dependencies (we’re consuming only, not developing/testing)
– $ composer require "zendframework/zend-crypt:^2.5"
• Specify version constraints
– $ composer require "zendframework/zend-crypt:^3.0@dev"
• Specify stability requirements
– $ composer remove zendframework/filp-whoops
• Remove a package; use --update-no-dev to avoid installing all require-dev
dependencies after the removal!
• Benefit: these do the install/update automatically, (generally) ensuring the update is only for the
package specified; unrelated dependencies are left alone. Faster and no unnecessary changes.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 21
Describing Project Dependencies
composer.json file tells Composer about your project’s needs
Application
zendframework/
zend-log
>=2.9.0
{
"name" : "Composer-Intro",
"require" : {
"zendframework/zend-log" : “>=2.9.0"
},
"repositories" : [ {
"type" : "composer",
"url" : "https://packagist.org/"
} ]
}
>= is an unbound version constraint,
a general no-no, used here for
illustration only
composer.json
composer.json
? ? ?
Not necessary to edit composer.json manually! Best practice is to use command line!
composer init, composer require, composer remove
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 22
Installing Project Dependencies
First Level (Direct) Deps
composer install
Application
zendframework/
zend-log
>=2.9.0
New:
•Vendor Directory
•composer.lock file
AfterBefore
{
"require" : {
"zendframework/zend-log" : “>=2.9.0"
}
}
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 23
Installing Project Dependencies
Further Levels (1 of 3)
zend-log composer.json file contains this:
{ …
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
"zendframework/zend-stdlib": "^2.7 || ^3.0",
"psr/log": "^1.0",
},
…
}
zend-log needs three more packages
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 24
Installing Project Dependencies
Further Levels (2 of 3)
zend-stdlib:
{ …
"require": {
"php": "^5.6 || ^7.0"
},
…
}
No further code dependencies
Only PHP constraint (platform package)
zend-servicemanager:
{ …
"require": {
"php": “^5.6 || ^7.0",
“container-interop/container-interop”: “^1.2”,
“psr/container”: ”^1.0”,
“zendframework/zend-stdlib”: “^3.1”
},
…
}
psr-log:
{ …
"require": {
"php": “>=5.3.0"
},
…
}
Still need more
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 25
container-interop:
{
"name": "container-interop/container-interop",
"type": "library",
"description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
"license": "MIT",
"autoload": {
"psr-4": {
"InteropContainer": "src/Interop/Container/"
}
},
“require”: {
“psr/container”: “^1.0”
}
}
Installing Project Dependencies
Further Levels (3 of 3)
One more dependency
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 26
Installing Project Dependencies
Further Levels (3 of 3)
No further code dependencies
psr/container:
{
"name": " psr/ container",
"description": “Common container interface (PHP FIG PSR-11)",
"license": "MIT",
"autoload": {
"psr-4": {
“PsrContainer": “src/"
}
},
“require”: {
“php”: “>=5.3.0”
}…
}
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 27
Where dependencies are stored by default
Application
vendor
zend-stdlib
zend-log
Dependency
Relationship
zend-servicemanager
Application
Directory
Structure
zend-log
zend-servicemanager
zend-stdlib
psr/log
container-interop
container-interop
psr/log
psr-container
zend-stdlib
psr/container
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 28
.json vs. .lock
Think “Design-To” vs. “As-Built”
Application
zendframework/
zend-log
>=2.9.0
composer.json tells Composer
what you want
composer.lock tells you
what you got
Application
zend-stdlib
3.1.0
zend-log
2.9.2
zend-
servicemanager
3.3.0
psr/log
1.0.2
container-iterop
1.2.0
psr-container
1.0.0
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 29
“Design-To” vs. “As-Built” Further Example
Application
Composer resolves versions as best it can
actual versions installed recorded in composer.lock
Application
zendframework/
zend-log
>=2.5,<2.7
zend-stdlib
2.7.7
zend-log
2.6.0
zend-
servicemanager
2.7.8
psr/log
1.0.2
container-iterop
1.2.0
zend-hydrator
1.1.0
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 30
Problems Can Occur
Your Project
“I need E
>=1.0,<1.2”
A B C
E version ?
“I need E
>=1.2,<2.0”
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 31
SEMANTIC VERSIONING
&
COMPOSER VERSION
CONSTRAINTS
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 32
Semantic Versioning http://semver.org/
Version Numbers Have Meaning
• Essentially, it is a promise from the development team
• Not a guarantee, but best effort
• 1.2.3 – numbers increment, can have pre-release suffix
• Major.Minor.Patch
• Patch: bug fixes; no BC breaks! No API changes! Everyone using
the package should be confident in moving from 1.2.3 to 1.2.4
• Minor: introduce new features, but change no prior APIs; no BC
breaks! Changing internals (refactoring) should not affect
package users. Everyone using the package should be confident in
moving from 1.2.3 to 1.3.0.
• Major: API changes; BC breaks (whether intentional or not).
Example: 1.3.14 to 2.0.0
• For developers, not marketing department. (Sorry, Marketing!)
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 33
Semantic Versioning http://semver.org/
Version Number ChangesImplication for Developers
• 0.1.0 #’s change as you see fit,• Initial Development / API Not Stable
• 0.1.1 as long as major # is zero• Public API remains Unstable
• …• …
• 1.0.0• Public API Declared Stable
• 1.0.1 only patch # incremented• Backwards-Compatible Bugfix
• 1.0.2• BC Bugfix
• …• …
• 1.1.0 minor # incremented, patch # reset to zero• New BC Featureor deprecation (API change)
• 1.1.1• BC Bugfix
• …• …
• 2.0.0 major # incremented, minor/patch reset to zero• Any BC Break to Public API
• 2.0.1 only patch # incremented• BC Bugfix
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 34
Semantic Versioning http://semver.org/
MeaningPre-Release Versions & Build Metadata
• Not Stable, might not be compatible as implied
by “normal” version number
• Format: x.y.z-alpha-nums.alpha-nums
• Precedence / Ordering
• 1.0.0-alpha < 1.0.0
• 1.3.0-alpha < 1.3.0-beta
• 1.3.0-rc < 1.3.0-rc.1
• 2.0.0-rc.1 < 2.0.0-rc.11
• 2.1.0-0.2.2 < 2.1.0-0.2.2.a
• Pre-Release Examples
• 1.0.0-alpha
• 1.3.0-beta
• 1.3.0-rc
• 2.0.0-rc.1
• 2.1.0-0.2.2 (check leading 0!!!)
• Information about the build
• Ignored in precedence comparison
• 1.0.0+001 === 1.0.0-alpha+20161018122346
• Build Metadata
• Format: x.y.z+alpha-nums
• 1.0.0+001
• 1.0.0+alpha-20161018122346
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 35
Semantic Versioning and Composer
Version Constraints
Shortcut notations for version constraints
Caret
• ^1.2.3 is same as >=1.2.3,<2.0.0 and means 1.2.3 <= v < 2.0.0
• Specifies a min version, and all non BC-breaking API-changing updates
• Recommended operator for max interoperability of library code
Tilde (updates in the same series as the rightmost digit*)
• ~1.2.3 is same as >=1.2.3,<1.3.0 and means 1.2.3 <= v < 1.3.0
• Specifies a min version; last number specified can increment
• For this example, we accept only bug-fixes, no new features.
• ~1.2 is same as >=1.2.0,<2.0.0 and means 1.2.0 <= v < 2.0.0
• For this example, we accept all non-breaking changes
• https://getcomposer.org/doc/articles/versions.md
*How Matthew
https://mwop.net/
likes to think of it.
Comma or space:
logical and
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 36
Practice: Semver Version Constraints
What range is specified by:
• ^2.0.3 is same as ?
• ~2.0.3 is same as ?
• ^3.7.0 is same as ?
• ~3.7.0 is same as ?
• ^4.4 is same as ?
• ~4.4 is same as ?
• ^3 is same as ?
• ~3 is same as ?
Try out the Semver Checker
https://semver.mwl.be/
>=2.0.3,<3.0.0 means 2.0.3 <= v < 3.0.0
>=2.0.3,<2.1.0 means 2.0.3 <= v < 2.1.0
>=3.7.0,<4.0.0 means 3.7.0 <= v < 4.0.0
>=3.7.0,<3.8.0 means 3.7.0 <= v < 3.8.0
>=4.4.0,<5.0.0 means 4.4.0 <= v < 5.0.0
>=4.4.0,<5.0.0 means 4.4.0 <= v < 5.0.0
>=3.0.0,<4.0.0 means 3.0.0 <= v < 4.0.0
>=3.0.0,<4.0.0 means 3.0.0 <= v < 4.0.0
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 37
Other Composer Version Constraints
Range Operators
• And - comma or space:
• “>=1.2.3,<2.0.0” means 1.2.3 <= v < 2.0.0
• Or – vertical pipes:
• “^2.7.5 || ^3.0.3” means
• >=2.7.5,<3.0.0 || 3.0.3,<4.0.0
• 2.7.5 <= v < 3.0.0 or 3.0.3 <= v < 4.0.0
• <, <=, >, >=, != Best practice: avoid unbound constraints like ”>=1.2.3”
• For great examples, see
https://github.com/Roave/SecurityAdvisories/blob/master/composer.json
• Hyphen
• 1.0-2.0 is same as >=1.0.0,<2.1.0 and means 1.0.0 <= v < 2.1.0
• 1.0.0-2.1.0 is same as >=1.0.0,<=2.1.0 and means 1.0.0 <= v <= 2.1.0
• Wildcards (generally avoid for performance reasons): 1.0.* I
• same as >=1.0.0,<1.1.0 and means 1.0.0 <= v < 1.1.0
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 38
REPOSITORIES-lite
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 39
Where do dependencies come from?
1. Read
Your
Application
composer.json
Repository
(or cache*)
2. Resolve dependencies &
obtain packages from
code repository (ies)
composer.lock
vendor
folder
4. Create
Initial composer install
With no composer.lock
Composer will …
*Aggressive caching
• Fast installs
• Reduced network fetch
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 40
Initial composer install
1. Read
Your
Application
composer.json
Repository
(or cache*)
2. Resolve dependencies &
Obtain packages from
composer.lock
vendor
folder
4. Create
With no composer.lock
Composer will …
*Aggressive caching
• Fast installs
• Reduced network fetch
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 41
Subsequent composer install
1. Read
Your
Application
composer.json
Repository
(or cache)
3. Write packages into
composer.lock
vendor
folder
With existing composer.lock
Composer will …
2. Obtain lock file versions from
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 42
Any composer update
1. Read
Your
Application
composer.json
Repository
(or cache)
composer.lock
vendor
folder
4. Update
Whether composer.lock
exists or not
Composer will … 2. Obtain packages’ latest
compatible release from
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 43
Development Considerations
Packagist.org,
Local repos
2. composer install
Development
Workstation /
Vhost
B
Development
Workstation /
Vhost
A
1. composer update &
commits to local VCS
General Best Practice: Always commit .lock file
• Allows synchronization between developers
• Helps ensure what was actually tested is what you deploy to production
Development
Workstation /
Vhost
C
install === “synchronize”
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 44
Production Considerations
Production
Server
Packagist.org
composer install
composer update
Please do NOT do this
• Repos unavailable
• network connectivity
• sites (GitHub, BitBucket)
busy or down
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 45
Production Considerations
“Build”
Server
Packagist.org
composer install
with composer.lock file
Better.Production
Server
Deploy application as a unit
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 46
Production Considerations
Test
Server
Best
Production
Server
Local
Repository (VCS /
Change Mgt /
Private Packagist)
Production
Server
Or
Local
Repository (VCS /
Change Mgt,
Private Packagist)
Deploy application as a unit
Docker, etc., anyone?
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 47
Class Autoloading – What’s the problem?
Autoloading
• http://php.net/manual/en/language.oop5.autoload.php
• http://php.net/manual/en/function.spl-autoload-register.php
• One source code file per PHP class
• Dozens of include ‘/path/to/classname’; in scripts.
• Annoying and potentially slow (especially unused classes)
• Without the source file being included, Fatal error 'ClassName' not
found
• Autoloader kicks in when PHP determines that a class definition doesn’t
currently exist
• Attempts to locate PHP source file corresponding to a given class
name or interface, and instantiates the class if source file found
• By registering autoloaders, PHP is given a last chance to load the
class or interface before it fails with an error.
• Allows for safe removal of include[_once]/require[_once] statements
• Only include/require needed source files, instantiating used classes
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 48
Class Autoloading – What makes it work
Autoloading
• How to automatically find and instantiate classes w/o referring to them?
• Structured directory/folder layout containing class PHP source files
• Source file naming convention corresponding to class names
• Rules for performing lookup and instantiation
• Class Name: DoctrineCommonIsolatedClassLoader
• Source code file
• /path/to/Doctrine/Common/IsolatedClassLoader.php
• Class Name: ZendAcl
• Source code file:
• /path/to/Zend/Acl.php
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 49
Class Autoloading – Basic process
• PSR 0
• http://www.php-fig.org/psr/psr-0/
• Deprecated, but isn’t “going away”
• PSR 4
• http://www.php-fig.org/psr/psr-4/
• Can be used in addition to other autoloading spec, including PSR 0
• Current recommended approach
• Either way:
• Determine desired class name
• Determine appropriate location on filesystem for source code file
• If that file exists, require ‘filepath’
• If source file doesn’t exist, return (to allow another autoloader to
perform a lookup)
• Examples only: http://www.php-fig.org/psr/psr-4/examples/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 50
Class Autoloading – Composer helps!
• Basic usage
• Packages specify autoloading guidance to Composer
• composer.json
"autoload" : {
"psr-4" : {
"PHPCompatibility" : "PHPCompatibility/"
}
},
• Another example
"autoload" : {
“classmap" : {
"CodeSniffer.php”,
"CodeSniffer/CLI.php",
"CodeSniffer/Exception.php",
…
• https://getcomposer.org/doc/01-basic-usage.md#autoloading
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 51
Class Autoloading – Composer helps!
• Optimizing Autoloader
• PSR 0/4 both still check filesystem before final classname resolution
• https://getcomposer.org/doc/articles/autoloader-optimization.md
• Composer-generated autoloader
• vendor/autoload.php
• vendor/composer/autoload*.php and ClassLoader.php
• How to use
require __DIR__ . '/vendor/autoload.php';
$log = new MonologLogger('name');
$log->pushHandler(
new MonologHandlerStreamHandler('app.log’,
MonologLogger::WARNING)
);
$log->addWarning('Foo');
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 52
PACKAGES & REPOSITORIES
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 53
What are Packages & Repositories?
Composer downloads packages from repositories
Package
• A directory with files in it
• Package description - composer.json
• Name (this is what makes a package an installable library)
• Version (avoid specifying this, inferred from VCS info)
• Source Definition (where Composer gets the package)
• Repository location (URI)
• Repository Type (composer, vcs, pear, package)
• Package Type
• Dist – packaged, usually a stable release
• Source – source code, for development / modification
• Repo can provide both, but one will be preferred
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 54
Package Names
• vendor-name/project-or-library-name
• psr/log
• pear/log
• zendframework/log
• Best practice: use-dashes/as-word-separators
• Vendor names must be unique
• If you are going to publish packages:
• Remember: they persist! You and the world will have to live with them.
• Don’t be cute or cryptic (with vendor or package name)
• Name should reflect package purpose
• evandotpro/edp-superluminal - I like it, clever, but…
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 55
Platform / Virtual Packages
Not Installable by Composer, Used for checking only
• php – PHP version of the server Composer is installing packages to
• hhvm (not applicable for IBM i)
• ext-<name>
• “ext-ibm_db2” : “*”
• lib-<name>
• curl
• iconv
• icu
• libxml
• openssl
• pcre
• uuid
• xsl
• composer show --platform for a list of available platform packages
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 56
Repositories
Repository
• A download source for packages, specified by URI
• A list of packages and versions in a packages.json file
• Visit https://packagist.org/packages.json
• Types of repositories
• Composer – uses Packagist software, can be public or private
• VCS – Git, SVN, Hg, Fossil
• VCS client needed for “regular” git, svn, hg, fossil repos
• Uses APIs for GitHub, BitBucket (no client needed)
• PEAR – public or private
• Package – zip; use only if none of the above are possible
• Reference: https://getcomposer.org/doc/05-repositories.md
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 57
Repositories: Packagist.org
Packagist.org Package Archivist
Just a Composer Repository…
• … but it is the primary repository for open source packages
• Best Practice for Open Source Projects: register it at packagist.org
• Searchable / Browseable
• Less work for people to find and use your package.
• Many, many, many packages available. There is duplication in
functionality and a wide range of quality. (Important topic for
another day.)
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 58
https://packagist.org/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 59
Private Repos – Satis, Toran Proxy, Private
Packagist
Your
Application
Packagist.org
Satis
Private
VCS
Satis – free, static composer repo generator
*Toran Proxy (being phased out)
Private Packagist
See packagist.com (not .org)
• fees support development of Composer
• SaaS or on-premises self-hosting
Why?
• Speed
• Reliability
• Happier network and
security staff
Your
Application Toran Proxy*
Packagist.org
Private
VCS
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 60
Private Repositories – Local Packagist
Your Application
composer.json /
composer.lock
Private
Repository
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 61
Avoid : Not-Final Word on Repositories
We’ll take a look at Satis later today.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 62
COMPOSER BEST PRACTICES
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 63
Some Best Practices
Do’s and Don’ts:
• Command line tooling is your friend
• Building a deployment fileset with
Composer
• Unbound Version Constraints
• Version Constraints combined with
Wildcards
• Wildcards by themselves
• Install or update to the intended directory
Be careful
out there!
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 64
Command line tooling
• Don’t edit composer.json files. Use the command line tooling!
– $ composer require zendframework/zend-crypt
• Add require entry for the component, specifying the latest stable release that does not
conflict with other requirements, (gets development dependencies by default)
– $ composer require --dev phpunit/phpunit
• Specify development requirements (libraries needed to edit/test the dependency)
– $ composer require --update-no-dev monolog/monolog
• Add package, with no dev dependencies (we’re consuming only, not developing/testing)
– $ composer require "zendframework/zend-crypt:^2.5"
• Specify version constraints
– $ composer require "zendframework/zend-crypt:^3.0@dev"
• Specify stability requirements
– $ composer remove zendframework/filp-whoops
• Remove a package; use --update-no-dev to avoid installing all require-dev
dependencies after the removal!
• Benefit: these do the install/update automatically, (generally) ensuring the update is only for the
package specified; unrelated dependencies are left alone. Faster and no unnecessary changes.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 65
Command line tooling – getting help
• Use the buit-in help (soooo many commands…)
– $ composer list
• List all available commands
– $ composer help require
• Adds required packages to your composer.json and installs
them.
– $ composer help install
• Installs the project dependencies from the composer.lock
file if present, or falls back on the composer.json.
– $ composer help update
• Upgrades your dependencies to the latest version according
to composer.json, and updates the composer.lock file.
– $ composer help outdated
• Shows a list of installed packages that have updates
available, including their latest version.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 66
Don’t install
development requirementsUse lock file
Download Distribution
Packages
composer install - - prefer-dist - - no-dev - - optimize-autoloader
Generate PSR-0/4 classmap
for fast autoloading
Building Production Deployment Filesets
For even better performance and reliability in production, use:
- - classmap-authoritative (implies - - optimize-autoloader)
-- apcu-autoloader (must manually specify - - optimize-autoloader)
https://getcomposer.org/doc/articles/autoloader-optimization.md
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 67
Do NOT use unbound version constraints
(>=, no upper bound):
• Example: >=2.3
• Example: >=1.1.* (note that * is not the
problem here, >= is)
• Composer will install new updates, as
long as they become available, without
regard to backwards-compatibility. (You’ll
get 2.3.5, 10.5.23, etc.)
• Example: dev-master
Best Practice
Use ^2.3
Use ^1.1
Best Practices Do’s and Don’ts
Solution: use upper bound
>=2.3,<3.0 or ~2.3 or ^2.3
Solution: >=1.1.0,<1.2 or ~1.1.0
https://getcomposer.org/doc/faqs/why-are-unbound-version-constraints-a-
bad-idea.md
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 68
Be careful when specifying a version constraint
with a wildcard. Normally okay:
• 2.* means >=2.0.0,<3.0.0
• However, consider >=2.*
• >=2 means any version at least 2.0.0
• (2.0.5, or 2.9.9, or 3.0.7, 10.3.2, etc.)
• 2.* means any version in the interval
• [2.0.0, 3.0.0), or 2.0.0-2.9.9999 (1st bullet
above)
• Composer can’t tell if you want 3.0.0 to be
considered or not.
Composer: “Invalid, I’m
throwing an error”
Solution: use >=2,<3
Best Practice:
^2.0 (for semantic versioning)
Best Practices Do’s and Don’ts
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 69
Best Practices Do’s and Don’ts
Do NOT use a wildcard (except for
virtual extension packages)
• Example: 1.2.* slows composer
down
• Looks at all patch level releases,
and all their sub-dependencies
• 1.* (minor version wildcard) is
really bad – could be many
dozens of versions
• Also limits composer to versions
< 1.3 forever
Composer: “Don’t make me work so hard!”
Solution:
(if you really want < 1.3) use ~1.2.0 or
>=1.2.0,<1.3
or
(if you really want any non-BC breaking
version >= 1.2, w/ new API features)
use ^1.2.0 or >=1.2.0,<2.0.0
or
SemVer Best Practice:
^1.2
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 70
Best Practices Do’s and Don’ts
• Make SURE you’re in the right
folder when issuing composer
install
• Will read composer.json in that
folder, create vendor folder, and
.lock file
• Regardless of existence of .lock
file in project root directory
• Same for composer update!
• Part of your vendor folder
could be updated with
packages not compatible
with other packages
Run composer install /update
from root of your project.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 71
PART DEUX:
PRIVATE REPOSITORY
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 72
Setting up a Private Composer Repo
• Private Packagist is best (proxy, “local”, supported)
• Satis
– Local, static, file-based version of Packagist generator
– Overview
• VCS repository containing your package
• composer.json specifying repos and package definitions
• Fetches packages found in composer.json
• Creates packages.json (this is your “composer” type repository)
• https://getcomposer.org/doc/05-repositories.md#satis
• https://getcomposer.org/doc/articles/handling-private-packages-with-
satis.md
• https://github.com/composer/satis
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 73
Setting up a Private Composer Repo
– Install Satis
– Make Satis aware of the VCS repository
– Use Satis to build the composer repository
– Host the repository via web server (demo using PHP built-in server)
– Configure an application to use the package
– Test it!
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 74
VCS Repository of Source Code
clark.e@US-114-carle MINGW64 ~/Zend/workspaces/Talks/measurement (master)
$ ls -l
total 67
-rw-r--r-- 1 clark.e 1049089 233 Oct 18 09:41 CHANGELOG.md
-rw-r--r-- 1 clark.e 1049089 917 Oct 18 09:48 composer.json
-rw-r--r-- 1 clark.e 1049089 36864 Dec 30 2015 composer.lock
-rw-r--r-- 1 clark.e 1049089 209 Oct 18 09:49 deployment.properties
-rw-r--r-- 1 clark.e 1049089 381 Apr 13 2016 deployment.xml
drwxr-xr-x 1 clark.e 1049089 0 Dec 27 2015 doc/
-rw-r--r-- 1 clark.e 1049089 157 Jan 1 2016 FAQ.md
-rw-r--r-- 1 clark.e 1049089 6 Dec 26 2015 index.php
-rw-r--r-- 1 clark.e 1049089 2508 Oct 18 09:48 LICENSE.txt
-rw-r--r-- 1 clark.e 1049089 564 Jan 1 2016 phpunit.xml
-rw-r--r-- 1 clark.e 1049089 569 Dec 26 2015 phpunit.xml.dist
drwxr-xr-x 1 clark.e 1049089 0 Jan 1 2016 src/
drwxr-xr-x 1 clark.e 1049089 0 Jan 1 2016 test/
drwxr-xr-x 1 clark.e 1049089 0 Dec 30 2015 vendor/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 75
Install Satis
$ cd /somewhere/
$ composer create-project composer/satis --stability=dev --keep-vcs
Installing composer/satis (dev-master f66ff72ce4e788e95827404888fd53b3c9d29f82)
- Installing composer/satis (dev-master master): Cloning master from cache
Created project in E:WindowsPCsatis
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Package operations: 42 installs, 0 updates, 0 removals
- Installing symfony/process (v3.2.8): Downloading (100%)
- Installing symfony/finder (v3.2.8): Downloading (100%)
- Installing symfony/filesystem (v3.2.8): Downloading (100%)
- Installing symfony/polyfill-mbstring (v1.3.0): Downloading (100%)
- Installing psr/log (1.0.2): Loading from cache
…
- Installing phpspec/prophecy (v1.7.0): Downloading (100%)
- Installing myclabs/deep-copy (1.6.1): Loading from cache
- Installing phpunit/phpunit (5.7.20): Downloading (100%)
symfony/console suggests installing symfony/event-dispatcher ()
…
Generating autoload files
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 76
Install Satis – what we got
clark.e@US-114-carle MINGW64 /e/WindowsPC/satis (master)
-rw-r--r-- 1 clark.e 1049089 69 Oct 23 07:35 .dockerignore
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 .git/
-rw-r--r-- 1 clark.e 1049089 420 Oct 23 07:35 .gitattributes
-rw-r--r-- 1 clark.e 1049089 72 Oct 23 07:35 .gitignore
-rw-r--r-- 1 clark.e 1049089 1091 Oct 23 07:35 .php_cs.dist
-rw-r--r-- 1 clark.e 1049089 366 Oct 23 07:35 .travis.yml
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 bin/
-rw-r--r-- 1 clark.e 1049089 635 Oct 23 07:35 box.json
-rw-r--r-- 1 clark.e 1049089 1448 Oct 23 07:35 composer.json
-rw-r--r-- 1 clark.e 1049089 79966 Oct 23 07:35 composer.lock
-rw-r--r-- 1 clark.e 1049089 1687 Oct 23 07:35 Dockerfile
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 docs/
-rw-r--r-- 1 clark.e 1049089 1047 Oct 23 07:35 LICENSE
-rw-r--r-- 1 clark.e 1049089 616 Oct 23 07:35 phpunit.xml.dist
-rw-r--r-- 1 clark.e 1049089 3098 Oct 23 07:35 README.md
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 res/
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 src/
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 tests/
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:36 vendor/
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 views/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 77
Satis – ask for help
$ ./bin/satis
Satis 1.0.0-dev
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for
more verbose output and 3 for debug
Available commands:
add Add repository URL to satis JSON file
build Builds a composer repository out of a json file
help Displays help for a command
init Initialize Satis configuration file
list Lists commands
purge Purge packages
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 78
Make Satis aware of our VCS repo - 1
$ ./bin/satis help init
Usage:
init [options] [--] [<file>]
Arguments:
file JSON file to use [default: "./satis.json"]
Options:
--name=NAME Repository name
--homepage=HOMEPAGE Home page
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for
more verbose output and 3 for debug
Help:
The init generates configuration file (satis.json is used by default).
You will need to run build command to build repository.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 79
Make Satis aware of our VCS repo - 2
$ ./bin/satis init --name="Demo Satis Repo" --homepage="http://localhost:8000"
Welcome to the Satis config generator
This command will guide you through creating your Satis config.
Repository name (Demo Satis Repo):
Home page (http://localhost:8000):
Your configuration file successfully created!
You are ready to add your package repositories
Use satis add repository-url to add them.
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 80
Make Satis aware of our VCS repo - 3
$ ./bin/satis init --name="Demo Satis Repo" --homepage="http://localhost:8000"
Welcome to the Satis config generator
This command will guide you through creating your Satis config.
Repository name (Demo Satis Repo):
Home page (http://localhost:8000):
Your configuration file successfully created!
You are ready to add your package repositories
Use satis add repository-url to add them.
$ ./bin/satis add "file:///c/Users/clark.e/Zend/workspaces/Talks/measurement/.git"
Your configuration file successfully updated! It's time to rebuild your repository
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 81
Make Satis aware of our VCS repo - 4
$ ./bin/satis build ./satis.json ../satis-web
Scanning packages
wrote packages to ../satis-web/include/all$763792245e46c378a3907675e5fd9b442623d0a6.json
Writing packages.json
Pruning include directories
Writing web view
$ ls -lt ../satis-web/
total 289
-rw-r--r-- 1 clark.e 1049089 292984 Oct 23 08:10 index.html
-rw-r--r-- 1 clark.e 1049089 192 Oct 23 08:10 packages.json
drwxr-xr-x 1 clark.e 1049089 0 Oct 23 08:10 include/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 82
Make Satis aware of our VCS repo - 5
$ cat ../satis-web/packages.json
{
"packages": [],
"includes": {
"include/all$763792245e46c378a3907675e5fd9b442623d0a6.json": {
"sha1": "763792245e46c378a3907675e5fd9b442623d0a6"
}
}
}
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 83
Host Composer Repo via Webserver
$ php -S localhost:8000 -t ../satis-web/
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 84
Configure Application to Use Package
$ cd ~/test-app/
$ ls -al
total 65
drwxr-xr-x 1 clark.e 1049089 0 Oct 18 09:34 ./
drwxr-xr-x 1 clark.e 1049089 0 Oct 18 11:02 ../
-rw-r--r-- 1 clark.e 1049089 383 Oct 18 09:34 example-usage.php
$ cat composer.json
{
"repositories": [ { "type": "composer", "url": "http://localhost:8000" } ]
}
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 85
Resources
• Composer Manual - https://getcomposer.org/doc/
• Semantic Versioning - http://semver.org/
• Autoloading - http://www.php-fig.org/psr/psr-4/
• JSON (JavaScript Object Notation) - http://json.org/
• Help - https://groups.google.com/forum/#!forum/composer-users
• IRC - #composer on freenode irc://irc.freenode.org/composer
• Packagist Semver Checker – http://semver.mwl.be/
• Composer.json Schema
– https://getcomposer.org/doc/04-schema.md
– https://github.com/composer/composer/blob/master/res/compo
ser-schema.json
– http://stackoverflow.com/questions/tagged/composer-php
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 86
So, who is this guy?
Clark Everetts, ZCE
• Rogue Wave Software (acquired Zend October 2015)
• PHP since 2005
• Professional Services Consultant
– Architecture and Performance Audits
– PHP, Zend Framework Training
– Application Development, Best Practices, etc.
– IBM i
• clark.everetts@roguewave.com @clarkphp +ClarkEveretts
© 2017 Rogue Wave Software, Inc. All Rights Reserved. 87
THANK-YOU
clark.everetts@roguewave.com
@clarkphp
+ClarkEveretts
Tweet: #zendcon2017
Rate, comment, get slides
https://joind.in/talk/973d7
Your feedback is invaluable!

More Related Content

What's hot

Continuous Integration & Drupal
Continuous Integration & DrupalContinuous Integration & Drupal
Continuous Integration & DrupalLimoenGroen
 
Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Mandi Walls
 
Getting out of the Job Jungle with Jenkins
Getting out of the Job Jungle with JenkinsGetting out of the Job Jungle with Jenkins
Getting out of the Job Jungle with JenkinsSonatype
 
Composer - The missing package manager for PHP
Composer - The missing package manager for PHPComposer - The missing package manager for PHP
Composer - The missing package manager for PHPTareq Hasan
 
LasCon 2014 DevOoops
LasCon 2014 DevOoops LasCon 2014 DevOoops
LasCon 2014 DevOoops Chris Gates
 
Drupal Continuous Integration (European Drupal Days 2015)
Drupal Continuous Integration (European Drupal Days 2015)Drupal Continuous Integration (European Drupal Days 2015)
Drupal Continuous Integration (European Drupal Days 2015)Eugenio Minardi
 
Choosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in ProdChoosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in ProdJosh Padnick
 
Adding Security and Compliance to Your Workflow with InSpec
Adding Security and Compliance to Your Workflow with InSpecAdding Security and Compliance to Your Workflow with InSpec
Adding Security and Compliance to Your Workflow with InSpecMandi Walls
 
Drupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The BasicsDrupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The BasicsJohn Smith
 
Drupal Continuous Integration with Jenkins - Deploy
Drupal Continuous Integration with Jenkins - DeployDrupal Continuous Integration with Jenkins - Deploy
Drupal Continuous Integration with Jenkins - DeployJohn Smith
 
Developing PHP Applications Faster
Developing PHP Applications FasterDeveloping PHP Applications Faster
Developing PHP Applications FasterAdam Culp
 
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsSymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsPablo Godel
 
Open Canary - novahackers
Open Canary - novahackersOpen Canary - novahackers
Open Canary - novahackersChris Gates
 
Drupal Deployment
Drupal DeploymentDrupal Deployment
Drupal DeploymentJeff Eaton
 
DevOops Redux Ken Johnson Chris Gates - AppSec USA 2016
DevOops Redux Ken Johnson Chris Gates  - AppSec USA 2016DevOops Redux Ken Johnson Chris Gates  - AppSec USA 2016
DevOops Redux Ken Johnson Chris Gates - AppSec USA 2016Chris Gates
 
AWS Survival Guide
AWS Survival GuideAWS Survival Guide
AWS Survival GuideKen Johnson
 
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...Taller Negócio Digitais
 
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan Roman
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan RomanDevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan Roman
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan RomanDevSecCon
 
Improving WordPress Development and Deployments with Docker
Improving WordPress Development and Deployments with DockerImproving WordPress Development and Deployments with Docker
Improving WordPress Development and Deployments with DockerBrett Palmer
 
Immutable infrastructure:觀念與實作 (建議)
Immutable infrastructure:觀念與實作 (建議)Immutable infrastructure:觀念與實作 (建議)
Immutable infrastructure:觀念與實作 (建議)William Yeh
 

What's hot (20)

Continuous Integration & Drupal
Continuous Integration & DrupalContinuous Integration & Drupal
Continuous Integration & Drupal
 
Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019
 
Getting out of the Job Jungle with Jenkins
Getting out of the Job Jungle with JenkinsGetting out of the Job Jungle with Jenkins
Getting out of the Job Jungle with Jenkins
 
Composer - The missing package manager for PHP
Composer - The missing package manager for PHPComposer - The missing package manager for PHP
Composer - The missing package manager for PHP
 
LasCon 2014 DevOoops
LasCon 2014 DevOoops LasCon 2014 DevOoops
LasCon 2014 DevOoops
 
Drupal Continuous Integration (European Drupal Days 2015)
Drupal Continuous Integration (European Drupal Days 2015)Drupal Continuous Integration (European Drupal Days 2015)
Drupal Continuous Integration (European Drupal Days 2015)
 
Choosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in ProdChoosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in Prod
 
Adding Security and Compliance to Your Workflow with InSpec
Adding Security and Compliance to Your Workflow with InSpecAdding Security and Compliance to Your Workflow with InSpec
Adding Security and Compliance to Your Workflow with InSpec
 
Drupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The BasicsDrupal Continuous Integration with Jenkins - The Basics
Drupal Continuous Integration with Jenkins - The Basics
 
Drupal Continuous Integration with Jenkins - Deploy
Drupal Continuous Integration with Jenkins - DeployDrupal Continuous Integration with Jenkins - Deploy
Drupal Continuous Integration with Jenkins - Deploy
 
Developing PHP Applications Faster
Developing PHP Applications FasterDeveloping PHP Applications Faster
Developing PHP Applications Faster
 
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony AppsSymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
SymfonyCon Madrid 2014 - Rock Solid Deployment of Symfony Apps
 
Open Canary - novahackers
Open Canary - novahackersOpen Canary - novahackers
Open Canary - novahackers
 
Drupal Deployment
Drupal DeploymentDrupal Deployment
Drupal Deployment
 
DevOops Redux Ken Johnson Chris Gates - AppSec USA 2016
DevOops Redux Ken Johnson Chris Gates  - AppSec USA 2016DevOops Redux Ken Johnson Chris Gates  - AppSec USA 2016
DevOops Redux Ken Johnson Chris Gates - AppSec USA 2016
 
AWS Survival Guide
AWS Survival GuideAWS Survival Guide
AWS Survival Guide
 
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
Best practices for Continuous Deployment with Drupal - DrupalCon Latin Améric...
 
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan Roman
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan RomanDevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan Roman
DevSecCon Tel Aviv 2018 - Integrated Security Testing by Morgan Roman
 
Improving WordPress Development and Deployments with Docker
Improving WordPress Development and Deployments with DockerImproving WordPress Development and Deployments with Docker
Improving WordPress Development and Deployments with Docker
 
Immutable infrastructure:觀念與實作 (建議)
Immutable infrastructure:觀念與實作 (建議)Immutable infrastructure:觀念與實作 (建議)
Immutable infrastructure:觀念與實作 (建議)
 

Similar to Php Dependency Management with Composer ZendCon 2017

Php Dependency Management with Composer ZendCon 2016
Php Dependency Management with Composer ZendCon 2016Php Dependency Management with Composer ZendCon 2016
Php Dependency Management with Composer ZendCon 2016Clark Everetts
 
PHP Dependency Management with Composer
PHP Dependency Management with ComposerPHP Dependency Management with Composer
PHP Dependency Management with ComposerAdam Englander
 
Composer Lightning Talk
Composer Lightning TalkComposer Lightning Talk
Composer Lightning TalkEric Johnson
 
Dependencies and Licenses
Dependencies and LicensesDependencies and Licenses
Dependencies and LicensesRobert Reiz
 
Dependency management with Composer
Dependency management with ComposerDependency management with Composer
Dependency management with ComposerJason Grimes
 
Aleksandr Kutsan "Managing Dependencies in C++"
Aleksandr Kutsan "Managing Dependencies in C++"Aleksandr Kutsan "Managing Dependencies in C++"
Aleksandr Kutsan "Managing Dependencies in C++"LogeekNightUkraine
 
Composer JSON kills make files
Composer JSON kills make filesComposer JSON kills make files
Composer JSON kills make filesropsu
 
NLUUG Spring 2012 - OpenShift Primer
NLUUG Spring 2012 - OpenShift PrimerNLUUG Spring 2012 - OpenShift Primer
NLUUG Spring 2012 - OpenShift PrimerEric D. Schabell
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guidevjvarenya
 
Essential Tools for Modern PHP
Essential Tools for Modern PHPEssential Tools for Modern PHP
Essential Tools for Modern PHPAlex Weissman
 
Habitat Workshop at Velocity London 2017
Habitat Workshop at Velocity London 2017Habitat Workshop at Velocity London 2017
Habitat Workshop at Velocity London 2017Mandi Walls
 
Docker module 1
Docker module 1Docker module 1
Docker module 1Liang Bo
 
Using Composer to create manageable WordPress websites
Using Composer to create manageable WordPress websitesUsing Composer to create manageable WordPress websites
Using Composer to create manageable WordPress websitesAnna Ladoshkina
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudSalesforce Developers
 

Similar to Php Dependency Management with Composer ZendCon 2017 (20)

Php Dependency Management with Composer ZendCon 2016
Php Dependency Management with Composer ZendCon 2016Php Dependency Management with Composer ZendCon 2016
Php Dependency Management with Composer ZendCon 2016
 
Composer
ComposerComposer
Composer
 
PHP Dependency Management with Composer
PHP Dependency Management with ComposerPHP Dependency Management with Composer
PHP Dependency Management with Composer
 
Composer Lightning Talk
Composer Lightning TalkComposer Lightning Talk
Composer Lightning Talk
 
Dependencies and Licenses
Dependencies and LicensesDependencies and Licenses
Dependencies and Licenses
 
Composer: Dependency Manager for PHP
Composer: Dependency Manager for PHPComposer: Dependency Manager for PHP
Composer: Dependency Manager for PHP
 
Mastering composer
Mastering composerMastering composer
Mastering composer
 
Composer
ComposerComposer
Composer
 
Dependency management with Composer
Dependency management with ComposerDependency management with Composer
Dependency management with Composer
 
Aleksandr Kutsan "Managing Dependencies in C++"
Aleksandr Kutsan "Managing Dependencies in C++"Aleksandr Kutsan "Managing Dependencies in C++"
Aleksandr Kutsan "Managing Dependencies in C++"
 
Composer JSON kills make files
Composer JSON kills make filesComposer JSON kills make files
Composer JSON kills make files
 
Composer namespacing
Composer namespacingComposer namespacing
Composer namespacing
 
NLUUG Spring 2012 - OpenShift Primer
NLUUG Spring 2012 - OpenShift PrimerNLUUG Spring 2012 - OpenShift Primer
NLUUG Spring 2012 - OpenShift Primer
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
 
Essential Tools for Modern PHP
Essential Tools for Modern PHPEssential Tools for Modern PHP
Essential Tools for Modern PHP
 
Composer
ComposerComposer
Composer
 
Habitat Workshop at Velocity London 2017
Habitat Workshop at Velocity London 2017Habitat Workshop at Velocity London 2017
Habitat Workshop at Velocity London 2017
 
Docker module 1
Docker module 1Docker module 1
Docker module 1
 
Using Composer to create manageable WordPress websites
Using Composer to create manageable WordPress websitesUsing Composer to create manageable WordPress websites
Using Composer to create manageable WordPress websites
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the Cloud
 

Recently uploaded

How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of indiaimessage0108
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Deliverybabeytanya
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 

Recently uploaded (20)

How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of india
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 

Php Dependency Management with Composer ZendCon 2017

  • 1. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 1 PHP Dependency Management with Composer Clark Everetts Sr. Professional Services Consultant 23 October 2017
  • 2. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 2 Slides, Joind.in, and Stuff • Rate & comment: https://joind.in/talk/973d7 • Slides: https://www.slideshare.net/clarkphp • Tweets: #zendcon2017 • @clarkphp
  • 3. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 3 Why are we here? Our Agenda • What is it? What problem does it solve? • What does it actually do? • Composer.json & composer.lock • Semantic Versioning, Version Constraints • Packages, Repositories and Packagist • Do’s and Don’ts / Best Practices • Create a Private Repository Cool logo!
  • 4. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 4 Assumption: You’ve seen JSON (JavaScript Object Notation) Jason is scary. JSON is not. *https://en.wikipedia.org/wiki/Jason_Voorhees
  • 5. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 5 INTRODUCTION/ BACKGROUND
  • 6. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 6 Composer is … … a per-project PHP dependency manager* *(plus autoloader) That’s all. Any questions?
  • 7. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 7 … a per-project PHP dependency manager Let’s break it down. Composer is … * Paraphrased from https://getcomposer.org/doc/00-intro.md
  • 8. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 8 PHP Package Dependencies … a per-project PHP dependency manager • PHP project-related files only • Can include assets like Javascript, images, XML, CSS, etc. • But not for managing Javascript or CSS libraries • Primarily a development - not production – tool (“can” be prod*) *but generally, I’m not a fan
  • 9. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 9 What’s a “dependency?” … a per-project PHP dependency manager You wrote these to reuse across apps. 3rd-Party ZF, Laravel, OAuth2, Symfony Your Project DEPENDENCIES, PACKAGES, LIBRARIES “Project” == Application
  • 10. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 10 Dependencies can have dependencies … a per-project PHP dependency manager Your Project “Project” == Application == Library == Package DEPENDENCIES, PACKAGES, LIBRARIES “I need A, B, C, D” A B C D “I need E” E F “I need E” Composer obtains all specified dependencies. HG “I need G, H”
  • 11. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 11 Want to manage that yourself? “I need these” “I need this” A B C E D F G H “I need that” “I need the other” You’d need to: • Identify the direct dependencies of your project • Identify their dependencies, and all sub-dependencies • Locate the source code (PEAR, Git, Subversion, zip/gzip/bz2) • Download and install all of the source code • Make sure all the versions are compatible • Check for updates to any of the dependencies • Do it all again when updates are available With your guidance, Composer does all this for you.
  • 12. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 12 Different versions of the same package … a per-project PHP dependency manager Application A Application B Lib Y 1.0.1 Lib X 2.4.1 Lib Y 1.0.1 Lib X 1.2.0 Two projects, each using a different version of the same dependencies. Composer is not a global “package manager” PEAR, APT, YUM, Include_path Why do this? • Application A is stable, new features or bug fixes not relevant • Working with development version: Dev, Alpha, Beta, RC • Update cycle for App A !== App B
  • 13. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 13 To Reiterate: per-project; not global … a per-project PHP dependency manager Application A Application B Lib Y 1.0.1 Lib X 2.4.1 Lib Y 1.0.1 Lib X 2.4.1 Two projects, each using same version of the same dependencies. Each project has it’s own copy. • Like a PHAR (PHP Archive) file, all dependencies are available in the application directory tree. • Updates to the dependencies of one application do not affect another. • .gitattribute notwithstanding, potentially many copies of the exact same library source code on disk.
  • 14. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 14 Composer is… … a per-project PHP dependency manager • Knows what packages your application or library depends upon • Obtains those packages, and all of their dependencies, and installs appropriate versions of them into your project (and local cache) • When requested, checks for updates compatible with your project, and downloads them into your project (and local cache) • Allows you to pin multiple applications/libraries to the same or different versions of the packages they use. Composer makes it easier to manage application dependencies.
  • 15. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 15 Now What? Answered some questions, raised others: • How do we inform Composer what dependencies a project has? – composer.json, composer.lock • Where does it put the dependencies in the project? – vendor folder • Where does Composer obtain dependencies? – repositories • How does the project access to those dependencies when it needs them? – autoloading • How do we install Composer and start using it? A closer look…
  • 16. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 16 INSTALL COMPOSER
  • 17. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 17 Installation • Windows – https://getcomposer.org/Composer-Setup.exe – https://getcomposer.org/doc/00-intro.md#installation-windows – Or, GitBash, and follow *nix instructions ( This is what I do.) • *nix and IBM i PASE – https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx – Command line instructions on https://getcomposer.org/download/ • Manual Download on same page https://getcomposer.org/download/ • IBM i – CALL QP2TERM (or ssh), and follow *nix above – Before installing, check KB article on SSL peer certificate verification: – https://support.zend.com/hc/en-us/articles/205679027-Add-a-trusted- certificate-authority-to-IBM-i-for-PHP-5-6 (I think downloading via browser from https://curl.haxx.se/docs/caextract.html & dropping onto IFS is better) • Once installed, updates are easy: – $ composer self-update
  • 18. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 18 Help is available • Get help – $ composer help (top-level help) – $ composer list (list available commands) – $ composer help <command> (help on specified command) • Documentation – Check your PATH https://getcomposer.org/doc/00-intro.md#using- composer – https://getcomposer.org/doc/01-basic-usage.md – https://getcomposer.org/doc/03-cli.md (command line interface)
  • 19. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 19 COMPOSER.JSON & COMPOSER.LOCK
  • 20. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 20 General Tips • Don’t edit composer.json files. Use the command line tooling! – $ composer require zendframework/zend-crypt • Add require entry for the component, specifying the latest stable release that does not conflict with other requirements, (gets development dependencies by default) – $ composer require --dev phpunit/phpunit • Specify development requirements (libraries needed to edit/test the dependency) – $ composer require --update-no-dev monolog/monolog • Add package, with no dev dependencies (we’re consuming only, not developing/testing) – $ composer require "zendframework/zend-crypt:^2.5" • Specify version constraints – $ composer require "zendframework/zend-crypt:^3.0@dev" • Specify stability requirements – $ composer remove zendframework/filp-whoops • Remove a package; use --update-no-dev to avoid installing all require-dev dependencies after the removal! • Benefit: these do the install/update automatically, (generally) ensuring the update is only for the package specified; unrelated dependencies are left alone. Faster and no unnecessary changes.
  • 21. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 21 Describing Project Dependencies composer.json file tells Composer about your project’s needs Application zendframework/ zend-log >=2.9.0 { "name" : "Composer-Intro", "require" : { "zendframework/zend-log" : “>=2.9.0" }, "repositories" : [ { "type" : "composer", "url" : "https://packagist.org/" } ] } >= is an unbound version constraint, a general no-no, used here for illustration only composer.json composer.json ? ? ? Not necessary to edit composer.json manually! Best practice is to use command line! composer init, composer require, composer remove
  • 22. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 22 Installing Project Dependencies First Level (Direct) Deps composer install Application zendframework/ zend-log >=2.9.0 New: •Vendor Directory •composer.lock file AfterBefore { "require" : { "zendframework/zend-log" : “>=2.9.0" } }
  • 23. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 23 Installing Project Dependencies Further Levels (1 of 3) zend-log composer.json file contains this: { … "require": { "php": "^5.6 || ^7.0", "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3", "zendframework/zend-stdlib": "^2.7 || ^3.0", "psr/log": "^1.0", }, … } zend-log needs three more packages
  • 24. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 24 Installing Project Dependencies Further Levels (2 of 3) zend-stdlib: { … "require": { "php": "^5.6 || ^7.0" }, … } No further code dependencies Only PHP constraint (platform package) zend-servicemanager: { … "require": { "php": “^5.6 || ^7.0", “container-interop/container-interop”: “^1.2”, “psr/container”: ”^1.0”, “zendframework/zend-stdlib”: “^3.1” }, … } psr-log: { … "require": { "php": “>=5.3.0" }, … } Still need more
  • 25. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 25 container-interop: { "name": "container-interop/container-interop", "type": "library", "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", "license": "MIT", "autoload": { "psr-4": { "InteropContainer": "src/Interop/Container/" } }, “require”: { “psr/container”: “^1.0” } } Installing Project Dependencies Further Levels (3 of 3) One more dependency
  • 26. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 26 Installing Project Dependencies Further Levels (3 of 3) No further code dependencies psr/container: { "name": " psr/ container", "description": “Common container interface (PHP FIG PSR-11)", "license": "MIT", "autoload": { "psr-4": { “PsrContainer": “src/" } }, “require”: { “php”: “>=5.3.0” }… }
  • 27. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 27 Where dependencies are stored by default Application vendor zend-stdlib zend-log Dependency Relationship zend-servicemanager Application Directory Structure zend-log zend-servicemanager zend-stdlib psr/log container-interop container-interop psr/log psr-container zend-stdlib psr/container
  • 28. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 28 .json vs. .lock Think “Design-To” vs. “As-Built” Application zendframework/ zend-log >=2.9.0 composer.json tells Composer what you want composer.lock tells you what you got Application zend-stdlib 3.1.0 zend-log 2.9.2 zend- servicemanager 3.3.0 psr/log 1.0.2 container-iterop 1.2.0 psr-container 1.0.0
  • 29. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 29 “Design-To” vs. “As-Built” Further Example Application Composer resolves versions as best it can actual versions installed recorded in composer.lock Application zendframework/ zend-log >=2.5,<2.7 zend-stdlib 2.7.7 zend-log 2.6.0 zend- servicemanager 2.7.8 psr/log 1.0.2 container-iterop 1.2.0 zend-hydrator 1.1.0
  • 30. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 30 Problems Can Occur Your Project “I need E >=1.0,<1.2” A B C E version ? “I need E >=1.2,<2.0”
  • 31. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 31 SEMANTIC VERSIONING & COMPOSER VERSION CONSTRAINTS
  • 32. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 32 Semantic Versioning http://semver.org/ Version Numbers Have Meaning • Essentially, it is a promise from the development team • Not a guarantee, but best effort • 1.2.3 – numbers increment, can have pre-release suffix • Major.Minor.Patch • Patch: bug fixes; no BC breaks! No API changes! Everyone using the package should be confident in moving from 1.2.3 to 1.2.4 • Minor: introduce new features, but change no prior APIs; no BC breaks! Changing internals (refactoring) should not affect package users. Everyone using the package should be confident in moving from 1.2.3 to 1.3.0. • Major: API changes; BC breaks (whether intentional or not). Example: 1.3.14 to 2.0.0 • For developers, not marketing department. (Sorry, Marketing!)
  • 33. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 33 Semantic Versioning http://semver.org/ Version Number ChangesImplication for Developers • 0.1.0 #’s change as you see fit,• Initial Development / API Not Stable • 0.1.1 as long as major # is zero• Public API remains Unstable • …• … • 1.0.0• Public API Declared Stable • 1.0.1 only patch # incremented• Backwards-Compatible Bugfix • 1.0.2• BC Bugfix • …• … • 1.1.0 minor # incremented, patch # reset to zero• New BC Featureor deprecation (API change) • 1.1.1• BC Bugfix • …• … • 2.0.0 major # incremented, minor/patch reset to zero• Any BC Break to Public API • 2.0.1 only patch # incremented• BC Bugfix
  • 34. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 34 Semantic Versioning http://semver.org/ MeaningPre-Release Versions & Build Metadata • Not Stable, might not be compatible as implied by “normal” version number • Format: x.y.z-alpha-nums.alpha-nums • Precedence / Ordering • 1.0.0-alpha < 1.0.0 • 1.3.0-alpha < 1.3.0-beta • 1.3.0-rc < 1.3.0-rc.1 • 2.0.0-rc.1 < 2.0.0-rc.11 • 2.1.0-0.2.2 < 2.1.0-0.2.2.a • Pre-Release Examples • 1.0.0-alpha • 1.3.0-beta • 1.3.0-rc • 2.0.0-rc.1 • 2.1.0-0.2.2 (check leading 0!!!) • Information about the build • Ignored in precedence comparison • 1.0.0+001 === 1.0.0-alpha+20161018122346 • Build Metadata • Format: x.y.z+alpha-nums • 1.0.0+001 • 1.0.0+alpha-20161018122346
  • 35. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 35 Semantic Versioning and Composer Version Constraints Shortcut notations for version constraints Caret • ^1.2.3 is same as >=1.2.3,<2.0.0 and means 1.2.3 <= v < 2.0.0 • Specifies a min version, and all non BC-breaking API-changing updates • Recommended operator for max interoperability of library code Tilde (updates in the same series as the rightmost digit*) • ~1.2.3 is same as >=1.2.3,<1.3.0 and means 1.2.3 <= v < 1.3.0 • Specifies a min version; last number specified can increment • For this example, we accept only bug-fixes, no new features. • ~1.2 is same as >=1.2.0,<2.0.0 and means 1.2.0 <= v < 2.0.0 • For this example, we accept all non-breaking changes • https://getcomposer.org/doc/articles/versions.md *How Matthew https://mwop.net/ likes to think of it. Comma or space: logical and
  • 36. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 36 Practice: Semver Version Constraints What range is specified by: • ^2.0.3 is same as ? • ~2.0.3 is same as ? • ^3.7.0 is same as ? • ~3.7.0 is same as ? • ^4.4 is same as ? • ~4.4 is same as ? • ^3 is same as ? • ~3 is same as ? Try out the Semver Checker https://semver.mwl.be/ >=2.0.3,<3.0.0 means 2.0.3 <= v < 3.0.0 >=2.0.3,<2.1.0 means 2.0.3 <= v < 2.1.0 >=3.7.0,<4.0.0 means 3.7.0 <= v < 4.0.0 >=3.7.0,<3.8.0 means 3.7.0 <= v < 3.8.0 >=4.4.0,<5.0.0 means 4.4.0 <= v < 5.0.0 >=4.4.0,<5.0.0 means 4.4.0 <= v < 5.0.0 >=3.0.0,<4.0.0 means 3.0.0 <= v < 4.0.0 >=3.0.0,<4.0.0 means 3.0.0 <= v < 4.0.0
  • 37. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 37 Other Composer Version Constraints Range Operators • And - comma or space: • “>=1.2.3,<2.0.0” means 1.2.3 <= v < 2.0.0 • Or – vertical pipes: • “^2.7.5 || ^3.0.3” means • >=2.7.5,<3.0.0 || 3.0.3,<4.0.0 • 2.7.5 <= v < 3.0.0 or 3.0.3 <= v < 4.0.0 • <, <=, >, >=, != Best practice: avoid unbound constraints like ”>=1.2.3” • For great examples, see https://github.com/Roave/SecurityAdvisories/blob/master/composer.json • Hyphen • 1.0-2.0 is same as >=1.0.0,<2.1.0 and means 1.0.0 <= v < 2.1.0 • 1.0.0-2.1.0 is same as >=1.0.0,<=2.1.0 and means 1.0.0 <= v <= 2.1.0 • Wildcards (generally avoid for performance reasons): 1.0.* I • same as >=1.0.0,<1.1.0 and means 1.0.0 <= v < 1.1.0
  • 38. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 38 REPOSITORIES-lite
  • 39. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 39 Where do dependencies come from? 1. Read Your Application composer.json Repository (or cache*) 2. Resolve dependencies & obtain packages from code repository (ies) composer.lock vendor folder 4. Create Initial composer install With no composer.lock Composer will … *Aggressive caching • Fast installs • Reduced network fetch
  • 40. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 40 Initial composer install 1. Read Your Application composer.json Repository (or cache*) 2. Resolve dependencies & Obtain packages from composer.lock vendor folder 4. Create With no composer.lock Composer will … *Aggressive caching • Fast installs • Reduced network fetch
  • 41. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 41 Subsequent composer install 1. Read Your Application composer.json Repository (or cache) 3. Write packages into composer.lock vendor folder With existing composer.lock Composer will … 2. Obtain lock file versions from
  • 42. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 42 Any composer update 1. Read Your Application composer.json Repository (or cache) composer.lock vendor folder 4. Update Whether composer.lock exists or not Composer will … 2. Obtain packages’ latest compatible release from
  • 43. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 43 Development Considerations Packagist.org, Local repos 2. composer install Development Workstation / Vhost B Development Workstation / Vhost A 1. composer update & commits to local VCS General Best Practice: Always commit .lock file • Allows synchronization between developers • Helps ensure what was actually tested is what you deploy to production Development Workstation / Vhost C install === “synchronize”
  • 44. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 44 Production Considerations Production Server Packagist.org composer install composer update Please do NOT do this • Repos unavailable • network connectivity • sites (GitHub, BitBucket) busy or down
  • 45. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 45 Production Considerations “Build” Server Packagist.org composer install with composer.lock file Better.Production Server Deploy application as a unit
  • 46. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 46 Production Considerations Test Server Best Production Server Local Repository (VCS / Change Mgt / Private Packagist) Production Server Or Local Repository (VCS / Change Mgt, Private Packagist) Deploy application as a unit Docker, etc., anyone?
  • 47. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 47 Class Autoloading – What’s the problem? Autoloading • http://php.net/manual/en/language.oop5.autoload.php • http://php.net/manual/en/function.spl-autoload-register.php • One source code file per PHP class • Dozens of include ‘/path/to/classname’; in scripts. • Annoying and potentially slow (especially unused classes) • Without the source file being included, Fatal error 'ClassName' not found • Autoloader kicks in when PHP determines that a class definition doesn’t currently exist • Attempts to locate PHP source file corresponding to a given class name or interface, and instantiates the class if source file found • By registering autoloaders, PHP is given a last chance to load the class or interface before it fails with an error. • Allows for safe removal of include[_once]/require[_once] statements • Only include/require needed source files, instantiating used classes
  • 48. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 48 Class Autoloading – What makes it work Autoloading • How to automatically find and instantiate classes w/o referring to them? • Structured directory/folder layout containing class PHP source files • Source file naming convention corresponding to class names • Rules for performing lookup and instantiation • Class Name: DoctrineCommonIsolatedClassLoader • Source code file • /path/to/Doctrine/Common/IsolatedClassLoader.php • Class Name: ZendAcl • Source code file: • /path/to/Zend/Acl.php
  • 49. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 49 Class Autoloading – Basic process • PSR 0 • http://www.php-fig.org/psr/psr-0/ • Deprecated, but isn’t “going away” • PSR 4 • http://www.php-fig.org/psr/psr-4/ • Can be used in addition to other autoloading spec, including PSR 0 • Current recommended approach • Either way: • Determine desired class name • Determine appropriate location on filesystem for source code file • If that file exists, require ‘filepath’ • If source file doesn’t exist, return (to allow another autoloader to perform a lookup) • Examples only: http://www.php-fig.org/psr/psr-4/examples/
  • 50. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 50 Class Autoloading – Composer helps! • Basic usage • Packages specify autoloading guidance to Composer • composer.json "autoload" : { "psr-4" : { "PHPCompatibility" : "PHPCompatibility/" } }, • Another example "autoload" : { “classmap" : { "CodeSniffer.php”, "CodeSniffer/CLI.php", "CodeSniffer/Exception.php", … • https://getcomposer.org/doc/01-basic-usage.md#autoloading
  • 51. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 51 Class Autoloading – Composer helps! • Optimizing Autoloader • PSR 0/4 both still check filesystem before final classname resolution • https://getcomposer.org/doc/articles/autoloader-optimization.md • Composer-generated autoloader • vendor/autoload.php • vendor/composer/autoload*.php and ClassLoader.php • How to use require __DIR__ . '/vendor/autoload.php'; $log = new MonologLogger('name'); $log->pushHandler( new MonologHandlerStreamHandler('app.log’, MonologLogger::WARNING) ); $log->addWarning('Foo');
  • 52. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 52 PACKAGES & REPOSITORIES
  • 53. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 53 What are Packages & Repositories? Composer downloads packages from repositories Package • A directory with files in it • Package description - composer.json • Name (this is what makes a package an installable library) • Version (avoid specifying this, inferred from VCS info) • Source Definition (where Composer gets the package) • Repository location (URI) • Repository Type (composer, vcs, pear, package) • Package Type • Dist – packaged, usually a stable release • Source – source code, for development / modification • Repo can provide both, but one will be preferred
  • 54. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 54 Package Names • vendor-name/project-or-library-name • psr/log • pear/log • zendframework/log • Best practice: use-dashes/as-word-separators • Vendor names must be unique • If you are going to publish packages: • Remember: they persist! You and the world will have to live with them. • Don’t be cute or cryptic (with vendor or package name) • Name should reflect package purpose • evandotpro/edp-superluminal - I like it, clever, but…
  • 55. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 55 Platform / Virtual Packages Not Installable by Composer, Used for checking only • php – PHP version of the server Composer is installing packages to • hhvm (not applicable for IBM i) • ext-<name> • “ext-ibm_db2” : “*” • lib-<name> • curl • iconv • icu • libxml • openssl • pcre • uuid • xsl • composer show --platform for a list of available platform packages
  • 56. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 56 Repositories Repository • A download source for packages, specified by URI • A list of packages and versions in a packages.json file • Visit https://packagist.org/packages.json • Types of repositories • Composer – uses Packagist software, can be public or private • VCS – Git, SVN, Hg, Fossil • VCS client needed for “regular” git, svn, hg, fossil repos • Uses APIs for GitHub, BitBucket (no client needed) • PEAR – public or private • Package – zip; use only if none of the above are possible • Reference: https://getcomposer.org/doc/05-repositories.md
  • 57. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 57 Repositories: Packagist.org Packagist.org Package Archivist Just a Composer Repository… • … but it is the primary repository for open source packages • Best Practice for Open Source Projects: register it at packagist.org • Searchable / Browseable • Less work for people to find and use your package. • Many, many, many packages available. There is duplication in functionality and a wide range of quality. (Important topic for another day.)
  • 58. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 58 https://packagist.org/
  • 59. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 59 Private Repos – Satis, Toran Proxy, Private Packagist Your Application Packagist.org Satis Private VCS Satis – free, static composer repo generator *Toran Proxy (being phased out) Private Packagist See packagist.com (not .org) • fees support development of Composer • SaaS or on-premises self-hosting Why? • Speed • Reliability • Happier network and security staff Your Application Toran Proxy* Packagist.org Private VCS
  • 60. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 60 Private Repositories – Local Packagist Your Application composer.json / composer.lock Private Repository
  • 61. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 61 Avoid : Not-Final Word on Repositories We’ll take a look at Satis later today.
  • 62. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 62 COMPOSER BEST PRACTICES
  • 63. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 63 Some Best Practices Do’s and Don’ts: • Command line tooling is your friend • Building a deployment fileset with Composer • Unbound Version Constraints • Version Constraints combined with Wildcards • Wildcards by themselves • Install or update to the intended directory Be careful out there!
  • 64. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 64 Command line tooling • Don’t edit composer.json files. Use the command line tooling! – $ composer require zendframework/zend-crypt • Add require entry for the component, specifying the latest stable release that does not conflict with other requirements, (gets development dependencies by default) – $ composer require --dev phpunit/phpunit • Specify development requirements (libraries needed to edit/test the dependency) – $ composer require --update-no-dev monolog/monolog • Add package, with no dev dependencies (we’re consuming only, not developing/testing) – $ composer require "zendframework/zend-crypt:^2.5" • Specify version constraints – $ composer require "zendframework/zend-crypt:^3.0@dev" • Specify stability requirements – $ composer remove zendframework/filp-whoops • Remove a package; use --update-no-dev to avoid installing all require-dev dependencies after the removal! • Benefit: these do the install/update automatically, (generally) ensuring the update is only for the package specified; unrelated dependencies are left alone. Faster and no unnecessary changes.
  • 65. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 65 Command line tooling – getting help • Use the buit-in help (soooo many commands…) – $ composer list • List all available commands – $ composer help require • Adds required packages to your composer.json and installs them. – $ composer help install • Installs the project dependencies from the composer.lock file if present, or falls back on the composer.json. – $ composer help update • Upgrades your dependencies to the latest version according to composer.json, and updates the composer.lock file. – $ composer help outdated • Shows a list of installed packages that have updates available, including their latest version.
  • 66. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 66 Don’t install development requirementsUse lock file Download Distribution Packages composer install - - prefer-dist - - no-dev - - optimize-autoloader Generate PSR-0/4 classmap for fast autoloading Building Production Deployment Filesets For even better performance and reliability in production, use: - - classmap-authoritative (implies - - optimize-autoloader) -- apcu-autoloader (must manually specify - - optimize-autoloader) https://getcomposer.org/doc/articles/autoloader-optimization.md
  • 67. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 67 Do NOT use unbound version constraints (>=, no upper bound): • Example: >=2.3 • Example: >=1.1.* (note that * is not the problem here, >= is) • Composer will install new updates, as long as they become available, without regard to backwards-compatibility. (You’ll get 2.3.5, 10.5.23, etc.) • Example: dev-master Best Practice Use ^2.3 Use ^1.1 Best Practices Do’s and Don’ts Solution: use upper bound >=2.3,<3.0 or ~2.3 or ^2.3 Solution: >=1.1.0,<1.2 or ~1.1.0 https://getcomposer.org/doc/faqs/why-are-unbound-version-constraints-a- bad-idea.md
  • 68. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 68 Be careful when specifying a version constraint with a wildcard. Normally okay: • 2.* means >=2.0.0,<3.0.0 • However, consider >=2.* • >=2 means any version at least 2.0.0 • (2.0.5, or 2.9.9, or 3.0.7, 10.3.2, etc.) • 2.* means any version in the interval • [2.0.0, 3.0.0), or 2.0.0-2.9.9999 (1st bullet above) • Composer can’t tell if you want 3.0.0 to be considered or not. Composer: “Invalid, I’m throwing an error” Solution: use >=2,<3 Best Practice: ^2.0 (for semantic versioning) Best Practices Do’s and Don’ts
  • 69. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 69 Best Practices Do’s and Don’ts Do NOT use a wildcard (except for virtual extension packages) • Example: 1.2.* slows composer down • Looks at all patch level releases, and all their sub-dependencies • 1.* (minor version wildcard) is really bad – could be many dozens of versions • Also limits composer to versions < 1.3 forever Composer: “Don’t make me work so hard!” Solution: (if you really want < 1.3) use ~1.2.0 or >=1.2.0,<1.3 or (if you really want any non-BC breaking version >= 1.2, w/ new API features) use ^1.2.0 or >=1.2.0,<2.0.0 or SemVer Best Practice: ^1.2
  • 70. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 70 Best Practices Do’s and Don’ts • Make SURE you’re in the right folder when issuing composer install • Will read composer.json in that folder, create vendor folder, and .lock file • Regardless of existence of .lock file in project root directory • Same for composer update! • Part of your vendor folder could be updated with packages not compatible with other packages Run composer install /update from root of your project.
  • 71. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 71 PART DEUX: PRIVATE REPOSITORY
  • 72. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 72 Setting up a Private Composer Repo • Private Packagist is best (proxy, “local”, supported) • Satis – Local, static, file-based version of Packagist generator – Overview • VCS repository containing your package • composer.json specifying repos and package definitions • Fetches packages found in composer.json • Creates packages.json (this is your “composer” type repository) • https://getcomposer.org/doc/05-repositories.md#satis • https://getcomposer.org/doc/articles/handling-private-packages-with- satis.md • https://github.com/composer/satis
  • 73. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 73 Setting up a Private Composer Repo – Install Satis – Make Satis aware of the VCS repository – Use Satis to build the composer repository – Host the repository via web server (demo using PHP built-in server) – Configure an application to use the package – Test it!
  • 74. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 74 VCS Repository of Source Code clark.e@US-114-carle MINGW64 ~/Zend/workspaces/Talks/measurement (master) $ ls -l total 67 -rw-r--r-- 1 clark.e 1049089 233 Oct 18 09:41 CHANGELOG.md -rw-r--r-- 1 clark.e 1049089 917 Oct 18 09:48 composer.json -rw-r--r-- 1 clark.e 1049089 36864 Dec 30 2015 composer.lock -rw-r--r-- 1 clark.e 1049089 209 Oct 18 09:49 deployment.properties -rw-r--r-- 1 clark.e 1049089 381 Apr 13 2016 deployment.xml drwxr-xr-x 1 clark.e 1049089 0 Dec 27 2015 doc/ -rw-r--r-- 1 clark.e 1049089 157 Jan 1 2016 FAQ.md -rw-r--r-- 1 clark.e 1049089 6 Dec 26 2015 index.php -rw-r--r-- 1 clark.e 1049089 2508 Oct 18 09:48 LICENSE.txt -rw-r--r-- 1 clark.e 1049089 564 Jan 1 2016 phpunit.xml -rw-r--r-- 1 clark.e 1049089 569 Dec 26 2015 phpunit.xml.dist drwxr-xr-x 1 clark.e 1049089 0 Jan 1 2016 src/ drwxr-xr-x 1 clark.e 1049089 0 Jan 1 2016 test/ drwxr-xr-x 1 clark.e 1049089 0 Dec 30 2015 vendor/
  • 75. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 75 Install Satis $ cd /somewhere/ $ composer create-project composer/satis --stability=dev --keep-vcs Installing composer/satis (dev-master f66ff72ce4e788e95827404888fd53b3c9d29f82) - Installing composer/satis (dev-master master): Cloning master from cache Created project in E:WindowsPCsatis Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Package operations: 42 installs, 0 updates, 0 removals - Installing symfony/process (v3.2.8): Downloading (100%) - Installing symfony/finder (v3.2.8): Downloading (100%) - Installing symfony/filesystem (v3.2.8): Downloading (100%) - Installing symfony/polyfill-mbstring (v1.3.0): Downloading (100%) - Installing psr/log (1.0.2): Loading from cache … - Installing phpspec/prophecy (v1.7.0): Downloading (100%) - Installing myclabs/deep-copy (1.6.1): Loading from cache - Installing phpunit/phpunit (5.7.20): Downloading (100%) symfony/console suggests installing symfony/event-dispatcher () … Generating autoload files
  • 76. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 76 Install Satis – what we got clark.e@US-114-carle MINGW64 /e/WindowsPC/satis (master) -rw-r--r-- 1 clark.e 1049089 69 Oct 23 07:35 .dockerignore drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 .git/ -rw-r--r-- 1 clark.e 1049089 420 Oct 23 07:35 .gitattributes -rw-r--r-- 1 clark.e 1049089 72 Oct 23 07:35 .gitignore -rw-r--r-- 1 clark.e 1049089 1091 Oct 23 07:35 .php_cs.dist -rw-r--r-- 1 clark.e 1049089 366 Oct 23 07:35 .travis.yml drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 bin/ -rw-r--r-- 1 clark.e 1049089 635 Oct 23 07:35 box.json -rw-r--r-- 1 clark.e 1049089 1448 Oct 23 07:35 composer.json -rw-r--r-- 1 clark.e 1049089 79966 Oct 23 07:35 composer.lock -rw-r--r-- 1 clark.e 1049089 1687 Oct 23 07:35 Dockerfile drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 docs/ -rw-r--r-- 1 clark.e 1049089 1047 Oct 23 07:35 LICENSE -rw-r--r-- 1 clark.e 1049089 616 Oct 23 07:35 phpunit.xml.dist -rw-r--r-- 1 clark.e 1049089 3098 Oct 23 07:35 README.md drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 res/ drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 src/ drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 tests/ drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:36 vendor/ drwxr-xr-x 1 clark.e 1049089 0 Oct 23 07:35 views/
  • 77. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 77 Satis – ask for help $ ./bin/satis Satis 1.0.0-dev Usage: command [options] [arguments] Options: -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug Available commands: add Add repository URL to satis JSON file build Builds a composer repository out of a json file help Displays help for a command init Initialize Satis configuration file list Lists commands purge Purge packages
  • 78. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 78 Make Satis aware of our VCS repo - 1 $ ./bin/satis help init Usage: init [options] [--] [<file>] Arguments: file JSON file to use [default: "./satis.json"] Options: --name=NAME Repository name --homepage=HOMEPAGE Home page -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug Help: The init generates configuration file (satis.json is used by default). You will need to run build command to build repository.
  • 79. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 79 Make Satis aware of our VCS repo - 2 $ ./bin/satis init --name="Demo Satis Repo" --homepage="http://localhost:8000" Welcome to the Satis config generator This command will guide you through creating your Satis config. Repository name (Demo Satis Repo): Home page (http://localhost:8000): Your configuration file successfully created! You are ready to add your package repositories Use satis add repository-url to add them.
  • 80. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 80 Make Satis aware of our VCS repo - 3 $ ./bin/satis init --name="Demo Satis Repo" --homepage="http://localhost:8000" Welcome to the Satis config generator This command will guide you through creating your Satis config. Repository name (Demo Satis Repo): Home page (http://localhost:8000): Your configuration file successfully created! You are ready to add your package repositories Use satis add repository-url to add them. $ ./bin/satis add "file:///c/Users/clark.e/Zend/workspaces/Talks/measurement/.git" Your configuration file successfully updated! It's time to rebuild your repository
  • 81. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 81 Make Satis aware of our VCS repo - 4 $ ./bin/satis build ./satis.json ../satis-web Scanning packages wrote packages to ../satis-web/include/all$763792245e46c378a3907675e5fd9b442623d0a6.json Writing packages.json Pruning include directories Writing web view $ ls -lt ../satis-web/ total 289 -rw-r--r-- 1 clark.e 1049089 292984 Oct 23 08:10 index.html -rw-r--r-- 1 clark.e 1049089 192 Oct 23 08:10 packages.json drwxr-xr-x 1 clark.e 1049089 0 Oct 23 08:10 include/
  • 82. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 82 Make Satis aware of our VCS repo - 5 $ cat ../satis-web/packages.json { "packages": [], "includes": { "include/all$763792245e46c378a3907675e5fd9b442623d0a6.json": { "sha1": "763792245e46c378a3907675e5fd9b442623d0a6" } } }
  • 83. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 83 Host Composer Repo via Webserver $ php -S localhost:8000 -t ../satis-web/
  • 84. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 84 Configure Application to Use Package $ cd ~/test-app/ $ ls -al total 65 drwxr-xr-x 1 clark.e 1049089 0 Oct 18 09:34 ./ drwxr-xr-x 1 clark.e 1049089 0 Oct 18 11:02 ../ -rw-r--r-- 1 clark.e 1049089 383 Oct 18 09:34 example-usage.php $ cat composer.json { "repositories": [ { "type": "composer", "url": "http://localhost:8000" } ] }
  • 85. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 85 Resources • Composer Manual - https://getcomposer.org/doc/ • Semantic Versioning - http://semver.org/ • Autoloading - http://www.php-fig.org/psr/psr-4/ • JSON (JavaScript Object Notation) - http://json.org/ • Help - https://groups.google.com/forum/#!forum/composer-users • IRC - #composer on freenode irc://irc.freenode.org/composer • Packagist Semver Checker – http://semver.mwl.be/ • Composer.json Schema – https://getcomposer.org/doc/04-schema.md – https://github.com/composer/composer/blob/master/res/compo ser-schema.json – http://stackoverflow.com/questions/tagged/composer-php
  • 86. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 86 So, who is this guy? Clark Everetts, ZCE • Rogue Wave Software (acquired Zend October 2015) • PHP since 2005 • Professional Services Consultant – Architecture and Performance Audits – PHP, Zend Framework Training – Application Development, Best Practices, etc. – IBM i • clark.everetts@roguewave.com @clarkphp +ClarkEveretts
  • 87. © 2017 Rogue Wave Software, Inc. All Rights Reserved. 87 THANK-YOU clark.everetts@roguewave.com @clarkphp +ClarkEveretts Tweet: #zendcon2017 Rate, comment, get slides https://joind.in/talk/973d7 Your feedback is invaluable!