CINXE.COM

Composer

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Composer</title> <meta name="description" content="A Dependency Manager for PHP"> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="/build/app.css?v=1"> </head> <body> <div id="container"> <header> <a href="/" title="Go back to the homepage" aria-label="Go back to the homepage">馃彔 Home</a><a class="" href="/doc/00-intro.md" title="Getting started with Composer" aria-label="Getting started with Composer">Getting Started</a><a class="active" href="/download/" title="Go the the Download page to see how to download Composer" aria-label="Go the the Download page to see how to download Composer">Download</a><a class="" href="/doc/" title="View the Composer documentation" aria-label="View the Composer documentation">Documentation</a><a class="last" href="https://packagist.org/" title="Browse Composer packages on packagist.org (external link to Packagist.org)" aria-label="Browse Composer packages on packagist.org (external link to Packagist.org)">Browse Packages</a> </header> <main role="main"> <div id="main"> <h1 role="heading">Download Composer <span class="latest">Latest: v2.8.3</span></h1> <h2>Windows Installer</h2> <p> The installer - which requires that you have PHP already installed - will download Composer for you and set up your PATH environment variable so you can simply call <code>composer</code> from any directory. </p> <p> Download and run <a href="/Composer-Setup.exe" title="Click here to download Composer-Setup installer for Windows" aria-label="Click here to download Composer-Setup installer for Windows">Composer-Setup.exe</a> - it will install the latest composer version whenever it is executed. </p> <h2>Command-line installation</h2> <p> To quickly install Composer in the current directory, run the following script in your terminal. To automate the installation, use <a href="/doc/faqs/how-to-install-composer-programmatically.md" title="See the instructions on how to install Composer programmatically" aria-label="See the instructions on how to install Composer programmatically">the guide on installing Composer programmatically</a>. </p> <pre class="installer">php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');"</pre> <p>This installer script will simply check some <code>php.ini</code> settings, warn you if they are set incorrectly, and then download the latest <code>composer.phar</code> in the current directory. The 4 lines above will, in order: </p> <ul> <li>Download the installer to the current directory</li> <li>Verify the installer SHA-384, which you can also <a href="https://composer.github.io/pubkeys.html" title="Get the SHA-384 key on GitHub (external link)" aria-label="Get the SHA-384 key on GitHub (external link)">cross-check here</a></li> <li>Run the installer</li> <li>Remove the installer</li> </ul> <p>Most likely, you want to put the <code>composer.phar</code> into a directory on your PATH, so you can simply call <code>composer</code> from any directory (<em>Global install</em>), using for example: </p> <pre class="language-bash">sudo mv composer.phar /usr/local/bin/composer</pre> <p> For details, <a href="/doc/00-intro.md#globally">see the instructions on how to install Composer globally</a>. </p> <p class="installer-warning"> <strong>WARNING:</strong> Please do not redistribute the install code. It will change with every version of the installer. Instead, please link to this page or check <a href="/doc/faqs/how-to-install-composer-programmatically.md" title="See the instructions on how to install Composer programmatically" aria-label="See the instructions on how to install Composer programmatically">how to install Composer programmatically</a>. </p> <h2 id="notable-installer-options">Notable Installer Options</h2> <h3>--install-dir</h3> <p>You can install composer to a specific directory by using the <code>--install-dir</code> option and providing a target directory. Example:</p> <code>php composer-setup.php --install-dir=bin</code> <h3>--filename</h3> <p>You can specify the filename (default: <code>composer.phar</code>) using the <code>--filename</code> option. Example:</p> <code>php composer-setup.php --filename=composer</code> <h3>--version</h3> <p>You can install composer to a specific release by using the <code>--version</code> option and providing a target release. Example:</p> <code>php composer-setup.php --version=1.0.0-alpha8</code> <h3>--preview, --snapshot, --1 (EOL), --2, --2.2 (LTS)</h3> <p>Select a specific version channel instead of the default latest stable. See "Download channels" below for more details. Example:</p> <code>php composer-setup.php --2.2</code> <h3>--help</h3> <p>The installer provides more options for specific environments, use the <code>--help</code> option to see all of them.</p> <h2 id="download-channels">Download channels</h2> <p>By default the installer and <code>composer self-update</code> will download the latest stable version only. You may select a different download channel though.<br> If you would like to help test pre-release versions you can use the <code>--preview</code> flag on either the installer or self-update.<br> For snapshot builds, which are done from the latest Composer commit, you can use the <code>--snapshot</code> flag.<br> To programmatically install specific major versions you can use the <code>--1</code> or <code>--2</code> flag. To select the latest 2.2 LTS you can use <code>--2.2</code>.</p> <h2 id="maintenance-policy">Maintenance policy</h2> <p>Bug fixes are only guaranteed to be provided for the latest feature release.</p> <p>Critical bug and security fixes are also provided for active LTS releases (currently <code>2.2</code>).</p> <p>Security fixes are still provided for <code>1.10</code> when applicable, but the version is deprecated and will eventually stop receiving fixes entirely.</p> <h2 id="manual-download">Manual Download</h2> <p>If you prefer to download the phar manually, here are the available versions:</p> <p> <a href="/download/latest-stable/composer.phar" title="Get the latest composer stable release" aria-label="Get the latest composer stable release">Latest Stable</a> (<a href="/download/latest-stable/composer.phar.sha256" title="Get the latest composer stable release's SHA256 sum" aria-label="Get the latest composer stable release's SHA256 sum">sha256</a> / <a href="/download/latest-stable/composer.phar.sha256sum" title="Get the latest composer stable release's SHA256 sum in sha256sum format" aria-label="Get the latest composer stable release's SHA256 sum in sha256sum format">sha256sum</a> / <a href="/download/latest-stable/composer.phar.asc" title="Get the latest composer stable release's PGP signature" aria-label="Get the latest composer stable release's PGP signature">asc</a>) for PHP 7.2+ users <br/> <a href="/download/latest-preview/composer.phar" title="Get the latest composer preview release" aria-label="Get the latest composer preview release">Latest Preview (alpha/beta/RC)</a> (<a href="/download/latest-preview/composer.phar.sha256" title="Get the latest composer preview release's SHA256 sum" aria-label="Get the latest composer preview release's SHA256 sum">sha256</a> / <a href="/download/latest-preview/composer.phar.sha256sum" title="Get the latest composer preview release's SHA256 sum in sha256sum format" aria-label="Get the latest composer preview release's SHA256 sum in sha256sum format">sha256sum</a> / <a href="/download/latest-preview/composer.phar.asc" title="Get the latest composer preview release's PGP signature" aria-label="Get the latest composer preview release's PGP signature">asc</a>) <br/> <a href="/composer.phar" title="Get the latest composer snapshot" aria-label="Get the latest composer snapshot">Latest Snapshot</a> (<a href="/composer.phar.sha256" title="Get the latest composer snapshot's SHA256 sum" aria-label="Get the latest composer snapshot's SHA256 sum">sha256</a> / <a href="/composer.phar.sha256sum" title="Get the latest composer snapshot's SHA256 sum in sha256sum format" aria-label="Get the latest composer snapshot's SHA256 sum in sha256sum format">sha256sum</a>) <br/> <a href="/download/latest-1.x/composer.phar" title="Get the latest composer 1.x stable release" aria-label="Get the latest composer 1.x stable release">Latest 1.x</a> (<a href="/download/latest-1.x/composer.phar.sha256" title="Get the latest composer 1.x stable release's SHA256 sum" aria-label="Get the latest composer 1.x stable release's SHA256 sum">sha256</a> / <a href="/download/latest-1.x/composer.phar.sha256sum" title="Get the latest composer 1.x stable release's SHA256 sum in sha256sum format" aria-label="Get the latest composer 1.x stable release's SHA256 sum in sha256sum format">sha256sum</a>) <br/> <a href="/download/latest-2.x/composer.phar" title="Get the latest composer 2.x stable release" aria-label="Get the latest composer 2.x stable release">Latest 2.x</a> (<a href="/download/latest-2.x/composer.phar.sha256" title="Get the latest composer 2.x stable release's SHA256 sum" aria-label="Get the latest composer 2.x stable release's SHA256 sum">sha256</a> / <a href="/download/latest-2.x/composer.phar.sha256sum" title="Get the latest composer 2.x stable release's SHA256 sum in sha256sum format" aria-label="Get the latest composer 2.x stable release's SHA256 sum in sha256sum format">sha256sum</a> / <a href="/download/latest-2.x/composer.phar.asc" title="Get the latest composer 2.x release's PGP signature" aria-label="Get the latest composer 2.x release's PGP signature">asc</a>) <br/> <a href="/download/latest-2.2.x/composer.phar" title="Get the latest composer 2.2.x LTS stable release" aria-label="Get the latest composer 2.2.x LTS stable release">Latest 2.2.x LTS</a> (<a href="/download/latest-2.2.x/composer.phar.sha256" title="Get the latest composer 2.2.x stable release's SHA256 sum" aria-label="Get the latest composer 2.2.x stable release's SHA256 sum">sha256</a> / <a href="/download/latest-2.2.x/composer.phar.sha256sum" title="Get the latest composer 2.2.x stable release's SHA256 sum in sha256sum format" aria-label="Get the latest composer 2.2.x stable release's SHA256 sum in sha256sum format">sha256sum</a> / <a href="/download/latest-2.2.x/composer.phar.asc" title="Get the latest composer 2.2.x release's PGP signature" aria-label="Get the latest composer 2.2.x release's PGP signature">asc</a>) for PHP 5.3 to 7.1 users <br/> </p> <table aria-label="Composer versions history" role="table" aria-describedby="composer-history-caption"> <caption id="composer-history-caption">Composer (composer.phar) versions history</caption> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.8.3/composer.phar" title="Download version 2.8.3" aria-label="Download version 2.8.3">2.8.3</a> </td> <td style="width: 100px" role="cell">2024-11-17</td> <td role="cell" style="width: 530px"> <a href="/download/2.8.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.8.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.8.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8323b4105c6e166d47c9db93209370083f9e421743636e108c37d8c1126386ef </code> <a href="/download/2.8.3/composer.phar.asc" title="Get the PGP signature for version 2.8.3" aria-label="Get the PGP signature for version 2.8.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.8.3" title="Changelog for version 2.8.3" aria-label="Changelog for version 2.8.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.8.2/composer.phar" title="Download version 2.8.2" aria-label="Download version 2.8.2">2.8.2</a> </td> <td style="width: 100px" role="cell">2024-10-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.8.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.8.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.8.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">9ed076041e269820c6c4223d66c5325fcaddc7f4b4317b3ba936812a965857ed </code> <a href="/download/2.8.2/composer.phar.asc" title="Get the PGP signature for version 2.8.2" aria-label="Get the PGP signature for version 2.8.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.8.2" title="Changelog for version 2.8.2" aria-label="Changelog for version 2.8.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.8.1/composer.phar" title="Download version 2.8.1" aria-label="Download version 2.8.1">2.8.1</a> </td> <td style="width: 100px" role="cell">2024-10-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.8.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.8.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.8.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">930b376fbd2147a623ea7b704eb9d3b8b0d6072992207aa0535aa21f6f05378e </code> <a href="/download/2.8.1/composer.phar.asc" title="Get the PGP signature for version 2.8.1" aria-label="Get the PGP signature for version 2.8.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.8.1" title="Changelog for version 2.8.1" aria-label="Changelog for version 2.8.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.8.0/composer.phar" title="Download version 2.8.0" aria-label="Download version 2.8.0">2.8.0</a> </td> <td style="width: 100px" role="cell">2024-10-02</td> <td role="cell" style="width: 530px"> <a href="/download/2.8.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.8.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.8.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1b23f2a31cb05f0e8ae29b5723fc5edf37e565106d6fae2cf23f298efa9c8981 </code> <a href="/download/2.8.0/composer.phar.asc" title="Get the PGP signature for version 2.8.0" aria-label="Get the PGP signature for version 2.8.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.8.0" title="Changelog for version 2.8.0" aria-label="Changelog for version 2.8.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.9/composer.phar" title="Download version 2.7.9" aria-label="Download version 2.7.9">2.7.9</a> </td> <td style="width: 100px" role="cell">2024-09-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b6de5e65c199d80ba11897fbe1364e063e858d483f6a81a176c4d60f2b1d6347 </code> <a href="/download/2.7.9/composer.phar.asc" title="Get the PGP signature for version 2.7.9" aria-label="Get the PGP signature for version 2.7.9">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.9" title="Changelog for version 2.7.9" aria-label="Changelog for version 2.7.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.8/composer.phar" title="Download version 2.7.8" aria-label="Download version 2.7.8">2.7.8</a> </td> <td style="width: 100px" role="cell">2024-08-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3da35dc2abb99d8ef3fdb1dec3166c39189f7cb29974a225e7bbca04c1b2c6e0 </code> <a href="/download/2.7.8/composer.phar.asc" title="Get the PGP signature for version 2.7.8" aria-label="Get the PGP signature for version 2.7.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.8" title="Changelog for version 2.7.8" aria-label="Changelog for version 2.7.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.7/composer.phar" title="Download version 2.7.7" aria-label="Download version 2.7.7">2.7.7</a> </td> <td style="width: 100px" role="cell">2024-06-10</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">aab940cd53d285a54c50465820a2080fcb7182a4ba1e5f795abfb10414a4b4be </code> <a href="/download/2.7.7/composer.phar.asc" title="Get the PGP signature for version 2.7.7" aria-label="Get the PGP signature for version 2.7.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.7" title="Changelog for version 2.7.7" aria-label="Changelog for version 2.7.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.6/composer.phar" title="Download version 2.7.6" aria-label="Download version 2.7.6">2.7.6</a> </td> <td style="width: 100px" role="cell">2024-05-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">29dc9a19ef33535db061b31180b2a833a7cf8d2cf4145b33a2f83504877bba08 </code> <a href="/download/2.7.6/composer.phar.asc" title="Get the PGP signature for version 2.7.6" aria-label="Get the PGP signature for version 2.7.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.6" title="Changelog for version 2.7.6" aria-label="Changelog for version 2.7.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.5/composer.phar" title="Download version 2.7.5" aria-label="Download version 2.7.5">2.7.5</a> </td> <td style="width: 100px" role="cell">2024-05-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0dc1f6bcb7a26ee165206010213c6069a537bf8e6533528739a864f154549b77 </code> <a href="/download/2.7.5/composer.phar.asc" title="Get the PGP signature for version 2.7.5" aria-label="Get the PGP signature for version 2.7.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.5" title="Changelog for version 2.7.5" aria-label="Changelog for version 2.7.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.4/composer.phar" title="Download version 2.7.4" aria-label="Download version 2.7.4">2.7.4</a> </td> <td style="width: 100px" role="cell">2024-04-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ee01080d632d2bbfa9c618009cca13718f36e751dda679a6009cee751c13b2d9 </code> <a href="/download/2.7.4/composer.phar.asc" title="Get the PGP signature for version 2.7.4" aria-label="Get the PGP signature for version 2.7.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.4" title="Changelog for version 2.7.4" aria-label="Changelog for version 2.7.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.3/composer.phar" title="Download version 2.7.3" aria-label="Download version 2.7.3">2.7.3</a> </td> <td style="width: 100px" role="cell">2024-04-19</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">fcc02ff044b5a04fbecff0158cb6041c25e8f78ac494098736fecd2bb4f381e4 </code> <a href="/download/2.7.3/composer.phar.asc" title="Get the PGP signature for version 2.7.3" aria-label="Get the PGP signature for version 2.7.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.3" title="Changelog for version 2.7.3" aria-label="Changelog for version 2.7.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.2/composer.phar" title="Download version 2.7.2" aria-label="Download version 2.7.2">2.7.2</a> </td> <td style="width: 100px" role="cell">2024-03-11</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">049b8e0ed9f264d770a0510858cffbc35401510759edc9a784b3a5c6e020bcac </code> <a href="/download/2.7.2/composer.phar.asc" title="Get the PGP signature for version 2.7.2" aria-label="Get the PGP signature for version 2.7.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.2" title="Changelog for version 2.7.2" aria-label="Changelog for version 2.7.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.1/composer.phar" title="Download version 2.7.1" aria-label="Download version 2.7.1">2.7.1</a> </td> <td style="width: 100px" role="cell">2024-02-09</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1ffd0be3f27e237b1ae47f9e8f29f96ac7f50a0bd9eef4f88cdbe94dd04bfff0 </code> <a href="/download/2.7.1/composer.phar.asc" title="Get the PGP signature for version 2.7.1" aria-label="Get the PGP signature for version 2.7.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.1" title="Changelog for version 2.7.1" aria-label="Changelog for version 2.7.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.7.0/composer.phar" title="Download version 2.7.0" aria-label="Download version 2.7.0">2.7.0</a> </td> <td style="width: 100px" role="cell">2024-02-08</td> <td role="cell" style="width: 530px"> <a href="/download/2.7.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.7.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.7.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2fc501cbef1891379523ee4989d37bf04798415a05f8eb44ae75acb2fdf2596f </code> <a href="/download/2.7.0/composer.phar.asc" title="Get the PGP signature for version 2.7.0" aria-label="Get the PGP signature for version 2.7.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.7.0" title="Changelog for version 2.7.0" aria-label="Changelog for version 2.7.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.6/composer.phar" title="Download version 2.6.6" aria-label="Download version 2.6.6">2.6.6</a> </td> <td style="width: 100px" role="cell">2023-12-08</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">72600201c73c7c4b218f1c0511b36d8537963e36aafa244757f52309f885b314 </code> <a href="/download/2.6.6/composer.phar.asc" title="Get the PGP signature for version 2.6.6" aria-label="Get the PGP signature for version 2.6.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.6" title="Changelog for version 2.6.6" aria-label="Changelog for version 2.6.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.5/composer.phar" title="Download version 2.6.5" aria-label="Download version 2.6.5">2.6.5</a> </td> <td style="width: 100px" role="cell">2023-10-06</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">9a18e1a3aadbcb94c1bafd6c4a98ff931f4b43a456ef48575130466e19f05dd6 </code> <a href="/download/2.6.5/composer.phar.asc" title="Get the PGP signature for version 2.6.5" aria-label="Get the PGP signature for version 2.6.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.5" title="Changelog for version 2.6.5" aria-label="Changelog for version 2.6.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.4/composer.phar" title="Download version 2.6.4" aria-label="Download version 2.6.4">2.6.4</a> </td> <td style="width: 100px" role="cell">2023-09-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5a39f3e2ce5ba391ee3fecb227faf21390f5b7ed5c56f14cab9e1c3048bcf8b8 </code> <a href="/download/2.6.4/composer.phar.asc" title="Get the PGP signature for version 2.6.4" aria-label="Get the PGP signature for version 2.6.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.4" title="Changelog for version 2.6.4" aria-label="Changelog for version 2.6.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.3/composer.phar" title="Download version 2.6.3" aria-label="Download version 2.6.3">2.6.3</a> </td> <td style="width: 100px" role="cell">2023-09-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e58a390cac0df45ccf5a3d95ae94fa239eded8b7907fa2c8f752f020304fc9b1 </code> <a href="/download/2.6.3/composer.phar.asc" title="Get the PGP signature for version 2.6.3" aria-label="Get the PGP signature for version 2.6.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.3" title="Changelog for version 2.6.3" aria-label="Changelog for version 2.6.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.2/composer.phar" title="Download version 2.6.2" aria-label="Download version 2.6.2">2.6.2</a> </td> <td style="width: 100px" role="cell">2023-09-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">88c84d4a53fcf1c27d6762e1d5d6b70d57c6dc9d2e2314fd09dbf86bf61e1aef </code> <a href="/download/2.6.2/composer.phar.asc" title="Get the PGP signature for version 2.6.2" aria-label="Get the PGP signature for version 2.6.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.2" title="Changelog for version 2.6.2" aria-label="Changelog for version 2.6.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.1/composer.phar" title="Download version 2.6.1" aria-label="Download version 2.6.1">2.6.1</a> </td> <td style="width: 100px" role="cell">2023-09-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">216bd5a516b544783fdce1a9e3a1eeb41f0aa9f0edb20dcd04f2846df64d3661 </code> <a href="/download/2.6.1/composer.phar.asc" title="Get the PGP signature for version 2.6.1" aria-label="Get the PGP signature for version 2.6.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.1" title="Changelog for version 2.6.1" aria-label="Changelog for version 2.6.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.6.0/composer.phar" title="Download version 2.6.0" aria-label="Download version 2.6.0">2.6.0</a> </td> <td style="width: 100px" role="cell">2023-09-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.6.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.6.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.6.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3b190c1cb72670fc033a4831e68c02068c0300616bde4d6ef4d1a183b7d33cc4 </code> <a href="/download/2.6.0/composer.phar.asc" title="Get the PGP signature for version 2.6.0" aria-label="Get the PGP signature for version 2.6.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.6.0" title="Changelog for version 2.6.0" aria-label="Changelog for version 2.6.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.8/composer.phar" title="Download version 2.5.8" aria-label="Download version 2.5.8">2.5.8</a> </td> <td style="width: 100px" role="cell">2023-06-09</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f07934fad44f9048c0dc875a506cca31cc2794d6aebfc1867f3b1fbf48dce2c5 </code> <a href="/download/2.5.8/composer.phar.asc" title="Get the PGP signature for version 2.5.8" aria-label="Get the PGP signature for version 2.5.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.8" title="Changelog for version 2.5.8" aria-label="Changelog for version 2.5.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.7/composer.phar" title="Download version 2.5.7" aria-label="Download version 2.5.7">2.5.7</a> </td> <td style="width: 100px" role="cell">2023-05-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">9256c4c1c803b9d0cb7a66a1ab6c737e48c43cc6df7b8ec9ec2497a724bf44de </code> <a href="/download/2.5.7/composer.phar.asc" title="Get the PGP signature for version 2.5.7" aria-label="Get the PGP signature for version 2.5.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.7" title="Changelog for version 2.5.7" aria-label="Changelog for version 2.5.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.6/composer.phar" title="Download version 2.5.6" aria-label="Download version 2.5.6">2.5.6</a> </td> <td style="width: 100px" role="cell">2023-05-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">79021fbedfb2b383d606d0cf2161eb2b034099ca4794ffa572e8575f7c5dabc8 </code> <a href="/download/2.5.6/composer.phar.asc" title="Get the PGP signature for version 2.5.6" aria-label="Get the PGP signature for version 2.5.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.6" title="Changelog for version 2.5.6" aria-label="Changelog for version 2.5.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.5/composer.phar" title="Download version 2.5.5" aria-label="Download version 2.5.5">2.5.5</a> </td> <td style="width: 100px" role="cell">2023-03-21</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">566a6d1cf4be1cc3ac882d2a2a13817ffae54e60f5aa7c9137434810a5809ffc </code> <a href="/download/2.5.5/composer.phar.asc" title="Get the PGP signature for version 2.5.5" aria-label="Get the PGP signature for version 2.5.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.5" title="Changelog for version 2.5.5" aria-label="Changelog for version 2.5.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.4/composer.phar" title="Download version 2.5.4" aria-label="Download version 2.5.4">2.5.4</a> </td> <td style="width: 100px" role="cell">2023-02-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">91ce6cbf9463eae86ae9d5c21d42faa601a519f3fbb2b623a55ee24678079bd3 </code> <a href="/download/2.5.4/composer.phar.asc" title="Get the PGP signature for version 2.5.4" aria-label="Get the PGP signature for version 2.5.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.4" title="Changelog for version 2.5.4" aria-label="Changelog for version 2.5.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.3/composer.phar" title="Download version 2.5.3" aria-label="Download version 2.5.3">2.5.3</a> </td> <td style="width: 100px" role="cell">2023-02-10</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2e1061821951c6a5ece033a025d06296d4a1d056fee2f4bebd35815cf4b1b0f9 </code> <a href="/download/2.5.3/composer.phar.asc" title="Get the PGP signature for version 2.5.3" aria-label="Get the PGP signature for version 2.5.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.3" title="Changelog for version 2.5.3" aria-label="Changelog for version 2.5.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.2/composer.phar" title="Download version 2.5.2" aria-label="Download version 2.5.2">2.5.2</a> </td> <td style="width: 100px" role="cell">2023-02-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0844c3dd85bbfa039d33fbda58ae65a38a9f615fcba76948aed75bf94d7606ca </code> <a href="/download/2.5.2/composer.phar.asc" title="Get the PGP signature for version 2.5.2" aria-label="Get the PGP signature for version 2.5.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.2" title="Changelog for version 2.5.2" aria-label="Changelog for version 2.5.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.1/composer.phar" title="Download version 2.5.1" aria-label="Download version 2.5.1">2.5.1</a> </td> <td style="width: 100px" role="cell">2022-12-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f1b94fee11a5bd6a1aae5d77c8da269df27c705fcc806ebf4c8c2e6fa8645c20 </code> <a href="/download/2.5.1/composer.phar.asc" title="Get the PGP signature for version 2.5.1" aria-label="Get the PGP signature for version 2.5.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.1" title="Changelog for version 2.5.1" aria-label="Changelog for version 2.5.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.5.0/composer.phar" title="Download version 2.5.0" aria-label="Download version 2.5.0">2.5.0</a> </td> <td style="width: 100px" role="cell">2022-12-20</td> <td role="cell" style="width: 530px"> <a href="/download/2.5.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.5.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.5.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b571610e5451785f76389a08e9575d91c3d6e38fee1df7a9708fe307013c8424 </code> <a href="/download/2.5.0/composer.phar.asc" title="Get the PGP signature for version 2.5.0" aria-label="Get the PGP signature for version 2.5.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.5.0" title="Changelog for version 2.5.0" aria-label="Changelog for version 2.5.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.4/composer.phar" title="Download version 2.4.4" aria-label="Download version 2.4.4">2.4.4</a> </td> <td style="width: 100px" role="cell">2022-10-27</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c252c2a2219956f88089ffc242b42c8cb9300a368fd3890d63940e4fc9652345 </code> <a href="/download/2.4.4/composer.phar.asc" title="Get the PGP signature for version 2.4.4" aria-label="Get the PGP signature for version 2.4.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.4" title="Changelog for version 2.4.4" aria-label="Changelog for version 2.4.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.3/composer.phar" title="Download version 2.4.3" aria-label="Download version 2.4.3">2.4.3</a> </td> <td style="width: 100px" role="cell">2022-10-14</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">26d72f2790502bc9b22209e1cec1e0e43d33b368606ad227d327cccb388b609a </code> <a href="/download/2.4.3/composer.phar.asc" title="Get the PGP signature for version 2.4.3" aria-label="Get the PGP signature for version 2.4.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.3" title="Changelog for version 2.4.3" aria-label="Changelog for version 2.4.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.2/composer.phar" title="Download version 2.4.2" aria-label="Download version 2.4.2">2.4.2</a> </td> <td style="width: 100px" role="cell">2022-09-14</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8fe98a01050c92cc6812b8ead3bd5b6e0bcdc575ce7a93b242bde497a31d7732 </code> <a href="/download/2.4.2/composer.phar.asc" title="Get the PGP signature for version 2.4.2" aria-label="Get the PGP signature for version 2.4.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.2" title="Changelog for version 2.4.2" aria-label="Changelog for version 2.4.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.1/composer.phar" title="Download version 2.4.1" aria-label="Download version 2.4.1">2.4.1</a> </td> <td style="width: 100px" role="cell">2022-08-20</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ea8cf6308ec76ff9645c3818841a7588096b9dc2767345fbd4bd492dd8a6dca6 </code> <a href="/download/2.4.1/composer.phar.asc" title="Get the PGP signature for version 2.4.1" aria-label="Get the PGP signature for version 2.4.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.1" title="Changelog for version 2.4.1" aria-label="Changelog for version 2.4.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.0/composer.phar" title="Download version 2.4.0" aria-label="Download version 2.4.0">2.4.0</a> </td> <td style="width: 100px" role="cell">2022-08-16</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1cdc74f74965908d0e98d00feeca37c23b86da51170a3a11a1538d89ff44d4dd </code> <a href="/download/2.4.0/composer.phar.asc" title="Get the PGP signature for version 2.4.0" aria-label="Get the PGP signature for version 2.4.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.0" title="Changelog for version 2.4.0" aria-label="Changelog for version 2.4.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.4.0-RC1/composer.phar" title="Download version 2.4.0-RC1" aria-label="Download version 2.4.0-RC1">2.4.0-RC1</a> </td> <td style="width: 100px" role="cell">2022-07-21</td> <td role="cell" style="width: 530px"> <a href="/download/2.4.0-RC1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.4.0-RC1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.4.0-RC1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">320ad515ec2bfd96f84898eeab5db5bc9305f140b946cbbe0f2290e82029db82 </code> <a href="/download/2.4.0-RC1/composer.phar.asc" title="Get the PGP signature for version 2.4.0-RC1" aria-label="Get the PGP signature for version 2.4.0-RC1">asc</a> </td> <td role="cell"> <a href="/changelog/2.4.0-RC1" title="Changelog for version 2.4.0-RC1" aria-label="Changelog for version 2.4.0-RC1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.10/composer.phar" title="Download version 2.3.10" aria-label="Download version 2.3.10">2.3.10</a> </td> <td style="width: 100px" role="cell">2022-07-13</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.10 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d808272f284fa8e0f8b470703e1438ac8f362030bbc9d12e29530277d767aff0 </code> <a href="/download/2.3.10/composer.phar.asc" title="Get the PGP signature for version 2.3.10" aria-label="Get the PGP signature for version 2.3.10">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.10" title="Changelog for version 2.3.10" aria-label="Changelog for version 2.3.10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.9/composer.phar" title="Download version 2.3.9" aria-label="Download version 2.3.9">2.3.9</a> </td> <td style="width: 100px" role="cell">2022-07-05</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0ec0cd63115cad28307e4b796350712e3cb77db992399aeb4a18a9c0680d7de2 </code> <a href="/download/2.3.9/composer.phar.asc" title="Get the PGP signature for version 2.3.9" aria-label="Get the PGP signature for version 2.3.9">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.9" title="Changelog for version 2.3.9" aria-label="Changelog for version 2.3.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.8/composer.phar" title="Download version 2.3.8" aria-label="Download version 2.3.8">2.3.8</a> </td> <td style="width: 100px" role="cell">2022-07-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c6ab768ad3239c4d4cc4f39f8ff7462925e088cd441e5bdb749fbf6efe049769 </code> <a href="/download/2.3.8/composer.phar.asc" title="Get the PGP signature for version 2.3.8" aria-label="Get the PGP signature for version 2.3.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.8" title="Changelog for version 2.3.8" aria-label="Changelog for version 2.3.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.7/composer.phar" title="Download version 2.3.7" aria-label="Download version 2.3.7">2.3.7</a> </td> <td style="width: 100px" role="cell">2022-06-06</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3f2d46787d51070f922bf991aa08324566f726f186076c2a5e4e8b01a8ea3fd0 </code> <a href="/download/2.3.7/composer.phar.asc" title="Get the PGP signature for version 2.3.7" aria-label="Get the PGP signature for version 2.3.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.7" title="Changelog for version 2.3.7" aria-label="Changelog for version 2.3.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.6/composer.phar" title="Download version 2.3.6" aria-label="Download version 2.3.6">2.3.6</a> </td> <td style="width: 100px" role="cell">2022-06-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">188e079d509156130d30204c9c8b3f00134dbbc6afadc2f37ed05d02646a47dc </code> <a href="/download/2.3.6/composer.phar.asc" title="Get the PGP signature for version 2.3.6" aria-label="Get the PGP signature for version 2.3.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.6" title="Changelog for version 2.3.6" aria-label="Changelog for version 2.3.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.5/composer.phar" title="Download version 2.3.5" aria-label="Download version 2.3.5">2.3.5</a> </td> <td style="width: 100px" role="cell">2022-04-13</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3b3b5a899c06a46aec280727bdf50aad14334f6bc40436ea76b07b650870d8f4 </code> <a href="/download/2.3.5/composer.phar.asc" title="Get the PGP signature for version 2.3.5" aria-label="Get the PGP signature for version 2.3.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.5" title="Changelog for version 2.3.5" aria-label="Changelog for version 2.3.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.4/composer.phar" title="Download version 2.3.4" aria-label="Download version 2.3.4">2.3.4</a> </td> <td style="width: 100px" role="cell">2022-04-07</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1fc8fc5b43f081fe76fa85eb5a213412e55f54a60bae4880bc96521ae482d6c3 </code> <a href="/download/2.3.4/composer.phar.asc" title="Get the PGP signature for version 2.3.4" aria-label="Get the PGP signature for version 2.3.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.4" title="Changelog for version 2.3.4" aria-label="Changelog for version 2.3.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.3/composer.phar" title="Download version 2.3.3" aria-label="Download version 2.3.3">2.3.3</a> </td> <td style="width: 100px" role="cell">2022-04-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d6931ec2b38b41bd0ad62f9d157908e6688bac091bbf0bd6a619c1067b922402 </code> <a href="/download/2.3.3/composer.phar.asc" title="Get the PGP signature for version 2.3.3" aria-label="Get the PGP signature for version 2.3.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.3" title="Changelog for version 2.3.3" aria-label="Changelog for version 2.3.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.2/composer.phar" title="Download version 2.3.2" aria-label="Download version 2.3.2">2.3.2</a> </td> <td style="width: 100px" role="cell">2022-03-30</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8ec134fe04ee52cd6465384c535ec61107368d4866ade9e995dcb96d8676f0c3 </code> <a href="/download/2.3.2/composer.phar.asc" title="Get the PGP signature for version 2.3.2" aria-label="Get the PGP signature for version 2.3.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.2" title="Changelog for version 2.3.2" aria-label="Changelog for version 2.3.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.1/composer.phar" title="Download version 2.3.1" aria-label="Download version 2.3.1">2.3.1</a> </td> <td style="width: 100px" role="cell">2022-03-30</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">35088e641c5e0f463652b20425e2a623095f539fb3a038ba8dccf1ce07f0eca9 </code> <a href="/download/2.3.1/composer.phar.asc" title="Get the PGP signature for version 2.3.1" aria-label="Get the PGP signature for version 2.3.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.1" title="Changelog for version 2.3.1" aria-label="Changelog for version 2.3.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.0/composer.phar" title="Download version 2.3.0" aria-label="Download version 2.3.0">2.3.0</a> </td> <td style="width: 100px" role="cell">2022-03-30</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">07d7d2adeaccd97eefa96c26bc6742b465b808b77bbf4246cf2b556970c2bcb1 </code> <a href="/download/2.3.0/composer.phar.asc" title="Get the PGP signature for version 2.3.0" aria-label="Get the PGP signature for version 2.3.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.0" title="Changelog for version 2.3.0" aria-label="Changelog for version 2.3.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.0-RC2/composer.phar" title="Download version 2.3.0-RC2" aria-label="Download version 2.3.0-RC2">2.3.0-RC2</a> </td> <td style="width: 100px" role="cell">2022-03-20</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.0-RC2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.0-RC2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.0-RC2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8e533738ad90e9fa4811348fda361a38f544c420f5a4ea17ed6ed64edd7509fe </code> <a href="/download/2.3.0-RC2/composer.phar.asc" title="Get the PGP signature for version 2.3.0-RC2" aria-label="Get the PGP signature for version 2.3.0-RC2">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.0-RC2" title="Changelog for version 2.3.0-RC2" aria-label="Changelog for version 2.3.0-RC2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.3.0-RC1/composer.phar" title="Download version 2.3.0-RC1" aria-label="Download version 2.3.0-RC1">2.3.0-RC1</a> </td> <td style="width: 100px" role="cell">2022-03-16</td> <td role="cell" style="width: 530px"> <a href="/download/2.3.0-RC1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.3.0-RC1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.3.0-RC1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">eb34514c87d16bad4cb7e45eca41df36b728ec8cf9c3a0487e6ac21bda96a132 </code> <a href="/download/2.3.0-RC1/composer.phar.asc" title="Get the PGP signature for version 2.3.0-RC1" aria-label="Get the PGP signature for version 2.3.0-RC1">asc</a> </td> <td role="cell"> <a href="/changelog/2.3.0-RC1" title="Changelog for version 2.3.0-RC1" aria-label="Changelog for version 2.3.0-RC1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.24/composer.phar" title="Download version 2.2.24" aria-label="Download version 2.2.24">2.2.24</a> </td> <td style="width: 100px" role="cell">2024-06-10</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.24/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.24 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.24 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b0c383b1f430a80a74c006f20199d1e0226848a0a90afa5c0a7d01fb90ee9075 </code> <a href="/download/2.2.24/composer.phar.asc" title="Get the PGP signature for version 2.2.24" aria-label="Get the PGP signature for version 2.2.24">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.24" title="Changelog for version 2.2.24" aria-label="Changelog for version 2.2.24">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.23/composer.phar" title="Download version 2.2.23" aria-label="Download version 2.2.23">2.2.23</a> </td> <td style="width: 100px" role="cell">2024-02-08</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.23/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.23 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.23 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">060ff6b6b8bfb60a943c94954cc4e8bf3e780ff33ecd7c7d9eb2f43241f39740 </code> <a href="/download/2.2.23/composer.phar.asc" title="Get the PGP signature for version 2.2.23" aria-label="Get the PGP signature for version 2.2.23">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.23" title="Changelog for version 2.2.23" aria-label="Changelog for version 2.2.23">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.22/composer.phar" title="Download version 2.2.22" aria-label="Download version 2.2.22">2.2.22</a> </td> <td style="width: 100px" role="cell">2023-09-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.22/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.22 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.22 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7d3500cc8c9a74b47e14103de150ac95c25ca227b39ffc89cb3a8b495b5db1d2 </code> <a href="/download/2.2.22/composer.phar.asc" title="Get the PGP signature for version 2.2.22" aria-label="Get the PGP signature for version 2.2.22">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.22" title="Changelog for version 2.2.22" aria-label="Changelog for version 2.2.22">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.21/composer.phar" title="Download version 2.2.21" aria-label="Download version 2.2.21">2.2.21</a> </td> <td style="width: 100px" role="cell">2023-02-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.21/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.21 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.21 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5211584ad39af26704da9f6209bc5d8104a2d576e80ce9c7ed8368ddd779d0af </code> <a href="/download/2.2.21/composer.phar.asc" title="Get the PGP signature for version 2.2.21" aria-label="Get the PGP signature for version 2.2.21">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.21" title="Changelog for version 2.2.21" aria-label="Changelog for version 2.2.21">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.20/composer.phar" title="Download version 2.2.20" aria-label="Download version 2.2.20">2.2.20</a> </td> <td style="width: 100px" role="cell">2023-02-10</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.20/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.20 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.20 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d16bb62fd408109583e8f0c237909d4b1b32fb14ab9cfc15847d11086ba51dec </code> <a href="/download/2.2.20/composer.phar.asc" title="Get the PGP signature for version 2.2.20" aria-label="Get the PGP signature for version 2.2.20">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.20" title="Changelog for version 2.2.20" aria-label="Changelog for version 2.2.20">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.19/composer.phar" title="Download version 2.2.19" aria-label="Download version 2.2.19">2.2.19</a> </td> <td style="width: 100px" role="cell">2023-02-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.19/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.19 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.19 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">325a7cb79ba2d34b27789b314504a8a028d1dde5a495445942bf66f5c19b30b1 </code> <a href="/download/2.2.19/composer.phar.asc" title="Get the PGP signature for version 2.2.19" aria-label="Get the PGP signature for version 2.2.19">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.19" title="Changelog for version 2.2.19" aria-label="Changelog for version 2.2.19">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.18/composer.phar" title="Download version 2.2.18" aria-label="Download version 2.2.18">2.2.18</a> </td> <td style="width: 100px" role="cell">2022-08-20</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.18/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.18 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.18 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">28a8d9740d615137a8c01d32aef9184db16f543fca36db038501a294d8e95b24 </code> <a href="/download/2.2.18/composer.phar.asc" title="Get the PGP signature for version 2.2.18" aria-label="Get the PGP signature for version 2.2.18">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.18" title="Changelog for version 2.2.18" aria-label="Changelog for version 2.2.18">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.17/composer.phar" title="Download version 2.2.17" aria-label="Download version 2.2.17">2.2.17</a> </td> <td style="width: 100px" role="cell">2022-07-13</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.17/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.17 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.17 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ec034d3d92c94ab63ebdf1a2bfa9f5e34cb08b043dae91958c6fcb2f47170cea </code> <a href="/download/2.2.17/composer.phar.asc" title="Get the PGP signature for version 2.2.17" aria-label="Get the PGP signature for version 2.2.17">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.17" title="Changelog for version 2.2.17" aria-label="Changelog for version 2.2.17">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.16/composer.phar" title="Download version 2.2.16" aria-label="Download version 2.2.16">2.2.16</a> </td> <td style="width: 100px" role="cell">2022-07-05</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.16/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.16 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.16 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">06932837764594c4864f913615d5ece24e8f0c40b8f074a5e00eacb23d3ae2c9 </code> <a href="/download/2.2.16/composer.phar.asc" title="Get the PGP signature for version 2.2.16" aria-label="Get the PGP signature for version 2.2.16">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.16" title="Changelog for version 2.2.16" aria-label="Changelog for version 2.2.16">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.15/composer.phar" title="Download version 2.2.15" aria-label="Download version 2.2.15">2.2.15</a> </td> <td style="width: 100px" role="cell">2022-07-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.15/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.15 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.15 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c83adb636c9e5eb22c6c7ccd8c3e54a3ee515f849caef0ec46d378637c4fab32 </code> <a href="/download/2.2.15/composer.phar.asc" title="Get the PGP signature for version 2.2.15" aria-label="Get the PGP signature for version 2.2.15">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.15" title="Changelog for version 2.2.15" aria-label="Changelog for version 2.2.15">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.14/composer.phar" title="Download version 2.2.14" aria-label="Download version 2.2.14">2.2.14</a> </td> <td style="width: 100px" role="cell">2022-06-06</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.14/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.14 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.14 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">84433f01bcd778f59ec150a1cdd4991c3d9b6cf74bcb7b6c18cdcd1e5efed9d4 </code> <a href="/download/2.2.14/composer.phar.asc" title="Get the PGP signature for version 2.2.14" aria-label="Get the PGP signature for version 2.2.14">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.14" title="Changelog for version 2.2.14" aria-label="Changelog for version 2.2.14">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.13/composer.phar" title="Download version 2.2.13" aria-label="Download version 2.2.13">2.2.13</a> </td> <td style="width: 100px" role="cell">2022-05-25</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.13/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.13 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.13 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4c3a6cbe00ad0aaae965523033d511fdf558ff7ff673749d925b7860c1807637 </code> <a href="/download/2.2.13/composer.phar.asc" title="Get the PGP signature for version 2.2.13" aria-label="Get the PGP signature for version 2.2.13">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.13" title="Changelog for version 2.2.13" aria-label="Changelog for version 2.2.13">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.12/composer.phar" title="Download version 2.2.12" aria-label="Download version 2.2.12">2.2.12</a> </td> <td style="width: 100px" role="cell">2022-04-13</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.12/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.12 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.12 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1ce90687eb3f89a99c059d45dd419d08430ed249468544b932b1dad7fb22dda0 </code> <a href="/download/2.2.12/composer.phar.asc" title="Get the PGP signature for version 2.2.12" aria-label="Get the PGP signature for version 2.2.12">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.12" title="Changelog for version 2.2.12" aria-label="Changelog for version 2.2.12">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.11/composer.phar" title="Download version 2.2.11" aria-label="Download version 2.2.11">2.2.11</a> </td> <td style="width: 100px" role="cell">2022-04-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.11/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.11 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.11 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">87c4aa2955437245fe510e6b2c794b17aba9ff6761a832fda4785863a23c5ba4 </code> <a href="/download/2.2.11/composer.phar.asc" title="Get the PGP signature for version 2.2.11" aria-label="Get the PGP signature for version 2.2.11">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.11" title="Changelog for version 2.2.11" aria-label="Changelog for version 2.2.11">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.10/composer.phar" title="Download version 2.2.10" aria-label="Download version 2.2.10">2.2.10</a> </td> <td style="width: 100px" role="cell">2022-03-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.10 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">dc9dfdd2ffb1180d785b5a3d581c946ec6da135f55c9959f21b96fea7d7fb12d </code> <a href="/download/2.2.10/composer.phar.asc" title="Get the PGP signature for version 2.2.10" aria-label="Get the PGP signature for version 2.2.10">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.10" title="Changelog for version 2.2.10" aria-label="Changelog for version 2.2.10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.9/composer.phar" title="Download version 2.2.9" aria-label="Download version 2.2.9">2.2.9</a> </td> <td style="width: 100px" role="cell">2022-03-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">48f9fdc9ad93904fee96550b45ae03a51f69718502ee855da894b4ad71d2dfe0 </code> <a href="/download/2.2.9/composer.phar.asc" title="Get the PGP signature for version 2.2.9" aria-label="Get the PGP signature for version 2.2.9">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.9" title="Changelog for version 2.2.9" aria-label="Changelog for version 2.2.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.8/composer.phar" title="Download version 2.2.8" aria-label="Download version 2.2.8">2.2.8</a> </td> <td style="width: 100px" role="cell">2022-03-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e1e1c580a237c739ecc1be57cf512e6b741faaa566439257d19ecd739ddfefaf </code> <a href="/download/2.2.8/composer.phar.asc" title="Get the PGP signature for version 2.2.8" aria-label="Get the PGP signature for version 2.2.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.8" title="Changelog for version 2.2.8" aria-label="Changelog for version 2.2.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.7/composer.phar" title="Download version 2.2.7" aria-label="Download version 2.2.7">2.2.7</a> </td> <td style="width: 100px" role="cell">2022-02-25</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">10040ded663541990eef8ce1f6fa44cb3b4a47e145efb8e9e59907a15068033d </code> <a href="/download/2.2.7/composer.phar.asc" title="Get the PGP signature for version 2.2.7" aria-label="Get the PGP signature for version 2.2.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.7" title="Changelog for version 2.2.7" aria-label="Changelog for version 2.2.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.6/composer.phar" title="Download version 2.2.6" aria-label="Download version 2.2.6">2.2.6</a> </td> <td style="width: 100px" role="cell">2022-02-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1d58486b891e59e9e064c0d54bb38538f74d6014f75481542c69ad84d4e97704 </code> <a href="/download/2.2.6/composer.phar.asc" title="Get the PGP signature for version 2.2.6" aria-label="Get the PGP signature for version 2.2.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.6" title="Changelog for version 2.2.6" aria-label="Changelog for version 2.2.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.5/composer.phar" title="Download version 2.2.5" aria-label="Download version 2.2.5">2.2.5</a> </td> <td style="width: 100px" role="cell">2022-01-21</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">81ef304a70c957d6f05a7659f03b00eb50df6155195f51118459b2e49c96c3f3 </code> <a href="/download/2.2.5/composer.phar.asc" title="Get the PGP signature for version 2.2.5" aria-label="Get the PGP signature for version 2.2.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.5" title="Changelog for version 2.2.5" aria-label="Changelog for version 2.2.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.4/composer.phar" title="Download version 2.2.4" aria-label="Download version 2.2.4">2.2.4</a> </td> <td style="width: 100px" role="cell">2022-01-08</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ba04e246960d193237d5ed6542bd78456898e7787fafb586f500c6807af7458d </code> <a href="/download/2.2.4/composer.phar.asc" title="Get the PGP signature for version 2.2.4" aria-label="Get the PGP signature for version 2.2.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.4" title="Changelog for version 2.2.4" aria-label="Changelog for version 2.2.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.3/composer.phar" title="Download version 2.2.3" aria-label="Download version 2.2.3">2.2.3</a> </td> <td style="width: 100px" role="cell">2021-12-31</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">721cc27f81c6485fff70e6f56b9f2aadae770a1f8974a384c34e35987a230d8c </code> <a href="/download/2.2.3/composer.phar.asc" title="Get the PGP signature for version 2.2.3" aria-label="Get the PGP signature for version 2.2.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.3" title="Changelog for version 2.2.3" aria-label="Changelog for version 2.2.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.2/composer.phar" title="Download version 2.2.2" aria-label="Download version 2.2.2">2.2.2</a> </td> <td style="width: 100px" role="cell">2021-12-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7391e020cd3ed1a158fd6cfc0b79d7c005854396536b5499e58fc6eedb544b4e </code> <a href="/download/2.2.2/composer.phar.asc" title="Get the PGP signature for version 2.2.2" aria-label="Get the PGP signature for version 2.2.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.2" title="Changelog for version 2.2.2" aria-label="Changelog for version 2.2.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.1/composer.phar" title="Download version 2.2.1" aria-label="Download version 2.2.1">2.2.1</a> </td> <td style="width: 100px" role="cell">2021-12-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1d2067cd8a4df546498b04817b0fa3827f291d564bcde29254e8d6d2db15f896 </code> <a href="/download/2.2.1/composer.phar.asc" title="Get the PGP signature for version 2.2.1" aria-label="Get the PGP signature for version 2.2.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.1" title="Changelog for version 2.2.1" aria-label="Changelog for version 2.2.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.0/composer.phar" title="Download version 2.2.0" aria-label="Download version 2.2.0">2.2.0</a> </td> <td style="width: 100px" role="cell">2021-12-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f7928b5465ad14c49901174d72c701d74ee278479ae19a44f6a46839e2d87d4d </code> <a href="/download/2.2.0/composer.phar.asc" title="Get the PGP signature for version 2.2.0" aria-label="Get the PGP signature for version 2.2.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.0" title="Changelog for version 2.2.0" aria-label="Changelog for version 2.2.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.2.0-RC1/composer.phar" title="Download version 2.2.0-RC1" aria-label="Download version 2.2.0-RC1">2.2.0-RC1</a> </td> <td style="width: 100px" role="cell">2021-12-08</td> <td role="cell" style="width: 530px"> <a href="/download/2.2.0-RC1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.2.0-RC1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.2.0-RC1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c86b1e37ecb73aa19306a6db8693ed002a202d16604f9f2093d6321ceb23afca </code> <a href="/download/2.2.0-RC1/composer.phar.asc" title="Get the PGP signature for version 2.2.0-RC1" aria-label="Get the PGP signature for version 2.2.0-RC1">asc</a> </td> <td role="cell"> <a href="/changelog/2.2.0-RC1" title="Changelog for version 2.2.0-RC1" aria-label="Changelog for version 2.2.0-RC1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.14/composer.phar" title="Download version 2.1.14" aria-label="Download version 2.1.14">2.1.14</a> </td> <td style="width: 100px" role="cell">2021-11-30</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.14/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.14 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.14 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d44a904520f9aaa766e8b4b05d2d9a766ad9a6f03fa1a48518224aad703061a4 </code> <a href="/download/2.1.14/composer.phar.asc" title="Get the PGP signature for version 2.1.14" aria-label="Get the PGP signature for version 2.1.14">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.14" title="Changelog for version 2.1.14" aria-label="Changelog for version 2.1.14">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.12/composer.phar" title="Download version 2.1.12" aria-label="Download version 2.1.12">2.1.12</a> </td> <td style="width: 100px" role="cell">2021-11-09</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.12/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.12 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.12 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ae3ec292dd04b4e468aea1e5db4d085f169d8a803aabeb99707f69e9454bf218 </code> <a href="/download/2.1.12/composer.phar.asc" title="Get the PGP signature for version 2.1.12" aria-label="Get the PGP signature for version 2.1.12">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.12" title="Changelog for version 2.1.12" aria-label="Changelog for version 2.1.12">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.11/composer.phar" title="Download version 2.1.11" aria-label="Download version 2.1.11">2.1.11</a> </td> <td style="width: 100px" role="cell">2021-11-02</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.11/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.11 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.11 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">fdb587131f8a11fcd475c9949ca340cc58a4b50cce6833caa8118b759a4ad1a3 </code> <a href="/download/2.1.11/composer.phar.asc" title="Get the PGP signature for version 2.1.11" aria-label="Get the PGP signature for version 2.1.11">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.11" title="Changelog for version 2.1.11" aria-label="Changelog for version 2.1.11">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.10/composer.phar" title="Download version 2.1.10" aria-label="Download version 2.1.10">2.1.10</a> </td> <td style="width: 100px" role="cell">2021-10-29</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.10 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">cb8b04cc6a6fb167403f7495e8539650eb555657aa48873f115383bcd8f0b18d </code> <a href="/download/2.1.10/composer.phar.asc" title="Get the PGP signature for version 2.1.10" aria-label="Get the PGP signature for version 2.1.10">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.10" title="Changelog for version 2.1.10" aria-label="Changelog for version 2.1.10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.9/composer.phar" title="Download version 2.1.9" aria-label="Download version 2.1.9">2.1.9</a> </td> <td style="width: 100px" role="cell">2021-10-05</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4d00b70e146c17d663ad2f9a21ebb4c9d52b021b1ac15f648b4d371c04d648ba </code> <a href="/download/2.1.9/composer.phar.asc" title="Get the PGP signature for version 2.1.9" aria-label="Get the PGP signature for version 2.1.9">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.9" title="Changelog for version 2.1.9" aria-label="Changelog for version 2.1.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.8/composer.phar" title="Download version 2.1.8" aria-label="Download version 2.1.8">2.1.8</a> </td> <td style="width: 100px" role="cell">2021-09-15</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">77b8aca1b41174a67f27be066558f8a96f489916f4cded2bead3cab6a3f33590 </code> <a href="/download/2.1.8/composer.phar.asc" title="Get the PGP signature for version 2.1.8" aria-label="Get the PGP signature for version 2.1.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.8" title="Changelog for version 2.1.8" aria-label="Changelog for version 2.1.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.7/composer.phar" title="Download version 2.1.7" aria-label="Download version 2.1.7">2.1.7</a> </td> <td style="width: 100px" role="cell">2021-09-14</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2936587e1babafa50d15eacf9fe775e825ed2e1f051c61acd3fa4f6af7720e94 </code> <a href="/download/2.1.7/composer.phar.asc" title="Get the PGP signature for version 2.1.7" aria-label="Get the PGP signature for version 2.1.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.7" title="Changelog for version 2.1.7" aria-label="Changelog for version 2.1.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.6/composer.phar" title="Download version 2.1.6" aria-label="Download version 2.1.6">2.1.6</a> </td> <td style="width: 100px" role="cell">2021-08-19</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">72524ccebcb071968eb83284507225fdba59f223719b2b3f333d76c8a9ac6b72 </code> <a href="/download/2.1.6/composer.phar.asc" title="Get the PGP signature for version 2.1.6" aria-label="Get the PGP signature for version 2.1.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.6" title="Changelog for version 2.1.6" aria-label="Changelog for version 2.1.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.5/composer.phar" title="Download version 2.1.5" aria-label="Download version 2.1.5">2.1.5</a> </td> <td style="width: 100px" role="cell">2021-07-23</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">be95557cc36eeb82da0f4340a469bad56b57f742d2891892dcb2f8b0179790ec </code> <a href="/download/2.1.5/composer.phar.asc" title="Get the PGP signature for version 2.1.5" aria-label="Get the PGP signature for version 2.1.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.5" title="Changelog for version 2.1.5" aria-label="Changelog for version 2.1.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.4/composer.phar" title="Download version 2.1.4" aria-label="Download version 2.1.4">2.1.4</a> </td> <td style="width: 100px" role="cell">2021-07-22</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3c8f521888ccb51becae522e263dbfd17169fbf3d4716685858b2c7e7684f4ae </code> <a href="/download/2.1.4/composer.phar.asc" title="Get the PGP signature for version 2.1.4" aria-label="Get the PGP signature for version 2.1.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.4" title="Changelog for version 2.1.4" aria-label="Changelog for version 2.1.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.3/composer.phar" title="Download version 2.1.3" aria-label="Download version 2.1.3">2.1.3</a> </td> <td style="width: 100px" role="cell">2021-06-09</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f8a72e98dec8da736d8dac66761ca0a8fbde913753e9a43f34112367f5174d11 </code> <a href="/download/2.1.3/composer.phar.asc" title="Get the PGP signature for version 2.1.3" aria-label="Get the PGP signature for version 2.1.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.3" title="Changelog for version 2.1.3" aria-label="Changelog for version 2.1.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.2/composer.phar" title="Download version 2.1.2" aria-label="Download version 2.1.2">2.1.2</a> </td> <td style="width: 100px" role="cell">2021-06-07</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2dec01094a6bd571dcc0ed796b6e180aca3833646834b66eb743b7d66787a43d </code> <a href="/download/2.1.2/composer.phar.asc" title="Get the PGP signature for version 2.1.2" aria-label="Get the PGP signature for version 2.1.2">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.2" title="Changelog for version 2.1.2" aria-label="Changelog for version 2.1.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.1/composer.phar" title="Download version 2.1.1" aria-label="Download version 2.1.1">2.1.1</a> </td> <td style="width: 100px" role="cell">2021-06-04</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">445a577f3d7966ed2327182380047a38179068ad1292f6b88de4e071920121ce </code> <a href="/download/2.1.1/composer.phar.asc" title="Get the PGP signature for version 2.1.1" aria-label="Get the PGP signature for version 2.1.1">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.1" title="Changelog for version 2.1.1" aria-label="Changelog for version 2.1.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.0/composer.phar" title="Download version 2.1.0" aria-label="Download version 2.1.0">2.1.0</a> </td> <td style="width: 100px" role="cell">2021-06-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2f8e8f684db5d6bd36a549629f3676e48f008624f499b13dfc7afa2f9cbde16e </code> <a href="/download/2.1.0/composer.phar.asc" title="Get the PGP signature for version 2.1.0" aria-label="Get the PGP signature for version 2.1.0">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.0" title="Changelog for version 2.1.0" aria-label="Changelog for version 2.1.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.1.0-RC1/composer.phar" title="Download version 2.1.0-RC1" aria-label="Download version 2.1.0-RC1">2.1.0-RC1</a> </td> <td style="width: 100px" role="cell">2021-06-02</td> <td role="cell" style="width: 530px"> <a href="/download/2.1.0-RC1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.1.0-RC1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.1.0-RC1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5e1413b44cd517af3f4d9ff5a66e6e053c0769eef30588bcd4f941209ed5a6be </code> <a href="/download/2.1.0-RC1/composer.phar.asc" title="Get the PGP signature for version 2.1.0-RC1" aria-label="Get the PGP signature for version 2.1.0-RC1">asc</a> </td> <td role="cell"> <a href="/changelog/2.1.0-RC1" title="Changelog for version 2.1.0-RC1" aria-label="Changelog for version 2.1.0-RC1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.14/composer.phar" title="Download version 2.0.14" aria-label="Download version 2.0.14">2.0.14</a> </td> <td style="width: 100px" role="cell">2021-05-21</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.14/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.14 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.14 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">29454b41558968ca634bf5e2d4d07ff2275d91b637a76d7a05e6747d36dd3473 </code> <a href="/download/2.0.14/composer.phar.asc" title="Get the PGP signature for version 2.0.14" aria-label="Get the PGP signature for version 2.0.14">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.14" title="Changelog for version 2.0.14" aria-label="Changelog for version 2.0.14">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.13/composer.phar" title="Download version 2.0.13" aria-label="Download version 2.0.13">2.0.13</a> </td> <td style="width: 100px" role="cell">2021-04-27</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.13/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.13 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.13 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">116fdf07cc926af646635a6abc92d88aff7b02a5dc36538f81c50a7d27366dbf </code> <a href="/download/2.0.13/composer.phar.asc" title="Get the PGP signature for version 2.0.13" aria-label="Get the PGP signature for version 2.0.13">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.13" title="Changelog for version 2.0.13" aria-label="Changelog for version 2.0.13">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.12/composer.phar" title="Download version 2.0.12" aria-label="Download version 2.0.12">2.0.12</a> </td> <td style="width: 100px" role="cell">2021-04-01</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.12/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.12 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.12 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">82ea8c1537cfaceb7e56f6004c7ccdf99ddafce7237c07374d920e635730a631 </code> <a href="/download/2.0.12/composer.phar.asc" title="Get the PGP signature for version 2.0.12" aria-label="Get the PGP signature for version 2.0.12">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.12" title="Changelog for version 2.0.12" aria-label="Changelog for version 2.0.12">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.11/composer.phar" title="Download version 2.0.11" aria-label="Download version 2.0.11">2.0.11</a> </td> <td style="width: 100px" role="cell">2021-02-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.11/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.11 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.11 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d6eee0d4637f4bd82bdae098fceda300dcb3ec35bf502604fbe7510933b8f952 </code> <a href="/download/2.0.11/composer.phar.asc" title="Get the PGP signature for version 2.0.11" aria-label="Get the PGP signature for version 2.0.11">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.11" title="Changelog for version 2.0.11" aria-label="Changelog for version 2.0.11">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.10/composer.phar" title="Download version 2.0.10" aria-label="Download version 2.0.10">2.0.10</a> </td> <td style="width: 100px" role="cell">2021-02-23</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.10 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">72a5a68d12f315d74d931462413f7e114cd77b4be1a6b9494141dda93410751a </code> <a href="/download/2.0.10/composer.phar.asc" title="Get the PGP signature for version 2.0.10" aria-label="Get the PGP signature for version 2.0.10">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.10" title="Changelog for version 2.0.10" aria-label="Changelog for version 2.0.10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.9/composer.phar" title="Download version 2.0.9" aria-label="Download version 2.0.9">2.0.9</a> </td> <td style="width: 100px" role="cell">2021-01-27</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8e91344a5ca2fc0fb583c50f195a1f36918908561c4ea3d6f01a4ef01c3b8560 </code> <a href="/download/2.0.9/composer.phar.asc" title="Get the PGP signature for version 2.0.9" aria-label="Get the PGP signature for version 2.0.9">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.9" title="Changelog for version 2.0.9" aria-label="Changelog for version 2.0.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.8/composer.phar" title="Download version 2.0.8" aria-label="Download version 2.0.8">2.0.8</a> </td> <td style="width: 100px" role="cell">2020-12-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2021f0d52b446e0efe3c548cc058ab5671fa38cdbcf814e7911c7e9d71d61538 </code> <a href="/download/2.0.8/composer.phar.asc" title="Get the PGP signature for version 2.0.8" aria-label="Get the PGP signature for version 2.0.8">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.8" title="Changelog for version 2.0.8" aria-label="Changelog for version 2.0.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.7/composer.phar" title="Download version 2.0.7" aria-label="Download version 2.0.7">2.0.7</a> </td> <td style="width: 100px" role="cell">2020-11-13</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0a060e8caf1d5cde55c4562fd68369b08cf231b8fd30da9c8f994b111557ebe9 </code> <a href="/download/2.0.7/composer.phar.asc" title="Get the PGP signature for version 2.0.7" aria-label="Get the PGP signature for version 2.0.7">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.7" title="Changelog for version 2.0.7" aria-label="Changelog for version 2.0.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.6/composer.phar" title="Download version 2.0.6" aria-label="Download version 2.0.6">2.0.6</a> </td> <td style="width: 100px" role="cell">2020-11-07</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e5e39d8fa699ddb09844f6b4388280ff2c805fef0a7c26580c5bbc91ac35091b </code> <a href="/download/2.0.6/composer.phar.asc" title="Get the PGP signature for version 2.0.6" aria-label="Get the PGP signature for version 2.0.6">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.6" title="Changelog for version 2.0.6" aria-label="Changelog for version 2.0.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.5/composer.phar" title="Download version 2.0.5" aria-label="Download version 2.0.5">2.0.5</a> </td> <td style="width: 100px" role="cell">2020-11-06</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e786d1d997efc1eb463d7447394b6ad17a144afcf8e505a3ce3cb0f60c3302f9 </code> <a href="/download/2.0.5/composer.phar.asc" title="Get the PGP signature for version 2.0.5" aria-label="Get the PGP signature for version 2.0.5">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.5" title="Changelog for version 2.0.5" aria-label="Changelog for version 2.0.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.4/composer.phar" title="Download version 2.0.4" aria-label="Download version 2.0.4">2.0.4</a> </td> <td style="width: 100px" role="cell">2020-10-30</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c3b2bc477429c923c69f7f9b137e06b2a93c6a1e192d40ffad1741ee5d54760d </code> <a href="/download/2.0.4/composer.phar.asc" title="Get the PGP signature for version 2.0.4" aria-label="Get the PGP signature for version 2.0.4">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.4" title="Changelog for version 2.0.4" aria-label="Changelog for version 2.0.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.3/composer.phar" title="Download version 2.0.3" aria-label="Download version 2.0.3">2.0.3</a> </td> <td style="width: 100px" role="cell">2020-10-28</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5d377e9b504dc9f6c9228d81c321ba85290512cdb396a12d3708b0cd30d2e20c </code> <a href="/download/2.0.3/composer.phar.asc" title="Get the PGP signature for version 2.0.3" aria-label="Get the PGP signature for version 2.0.3">asc</a> </td> <td role="cell"> <a href="/changelog/2.0.3" title="Changelog for version 2.0.3" aria-label="Changelog for version 2.0.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.2/composer.phar" title="Download version 2.0.2" aria-label="Download version 2.0.2">2.0.2</a> </td> <td style="width: 100px" role="cell">2020-10-25</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5e122edd0f2a4fb01172b6b1c156b3d252d9205105b4ad169a4b09913ba6a859 </code> </td> <td role="cell"> <a href="/changelog/2.0.2" title="Changelog for version 2.0.2" aria-label="Changelog for version 2.0.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.1/composer.phar" title="Download version 2.0.1" aria-label="Download version 2.0.1">2.0.1</a> </td> <td style="width: 100px" role="cell">2020-10-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4b4b118cc54662e4813ba86efb215fdb19c5b29944c5919b4f2803c915aa2234 </code> </td> <td role="cell"> <a href="/changelog/2.0.1" title="Changelog for version 2.0.1" aria-label="Changelog for version 2.0.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0/composer.phar" title="Download version 2.0.0" aria-label="Download version 2.0.0">2.0.0</a> </td> <td style="width: 100px" role="cell">2020-10-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">139657aa2b37867800292724145e3c4895f7755d845758b403dc329d17bdd285 </code> </td> <td role="cell"> <a href="/changelog/2.0.0" title="Changelog for version 2.0.0" aria-label="Changelog for version 2.0.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0-RC2/composer.phar" title="Download version 2.0.0-RC2" aria-label="Download version 2.0.0-RC2">2.0.0-RC2</a> </td> <td style="width: 100px" role="cell">2020-10-14</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0-RC2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0-RC2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0-RC2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">337b69c2fbf56c158538b7521bea6b09c42a29d39c4b8b25e55d21ba1440f807 </code> </td> <td role="cell"> <a href="/changelog/2.0.0-RC2" title="Changelog for version 2.0.0-RC2" aria-label="Changelog for version 2.0.0-RC2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0-RC1/composer.phar" title="Download version 2.0.0-RC1" aria-label="Download version 2.0.0-RC1">2.0.0-RC1</a> </td> <td style="width: 100px" role="cell">2020-09-10</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0-RC1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0-RC1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0-RC1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0d3a60be9515c87d6c061899ddaa23aa1476b34f7c0f75e562a928f58019f973 </code> </td> <td role="cell"> <a href="/changelog/2.0.0-RC1" title="Changelog for version 2.0.0-RC1" aria-label="Changelog for version 2.0.0-RC1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0-alpha3/composer.phar" title="Download version 2.0.0-alpha3" aria-label="Download version 2.0.0-alpha3">2.0.0-alpha3</a> </td> <td style="width: 100px" role="cell">2020-08-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0-alpha3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0-alpha3 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0-alpha3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">56acbd0b4c3314dac87a04fe44fe55bdfc117da38dfee8fd29528093d1e704bf </code> </td> <td role="cell"> <a href="/changelog/2.0.0-alpha3" title="Changelog for version 2.0.0-alpha3" aria-label="Changelog for version 2.0.0-alpha3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0-alpha2/composer.phar" title="Download version 2.0.0-alpha2" aria-label="Download version 2.0.0-alpha2">2.0.0-alpha2</a> </td> <td style="width: 100px" role="cell">2020-06-24</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0-alpha2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0-alpha2 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0-alpha2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6490fc59e48bf1ea5f3301cde071a56dc63e9a7dbb5540a94501bec570cabd5d </code> </td> <td role="cell"> <a href="/changelog/2.0.0-alpha2" title="Changelog for version 2.0.0-alpha2" aria-label="Changelog for version 2.0.0-alpha2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/2.0.0-alpha1/composer.phar" title="Download version 2.0.0-alpha1" aria-label="Download version 2.0.0-alpha1">2.0.0-alpha1</a> </td> <td style="width: 100px" role="cell">2020-06-03</td> <td role="cell" style="width: 530px"> <a href="/download/2.0.0-alpha1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 2.0.0-alpha1 in sha256sum format" aria-label="Download the SHA256 checksum for version 2.0.0-alpha1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">22ff90cd50d331bfab5c4eef35b5290a83a5bf7fadf52d47b72aade01e893920 </code> </td> <td role="cell"> <a href="/changelog/2.0.0-alpha1" title="Changelog for version 2.0.0-alpha1" aria-label="Changelog for version 2.0.0-alpha1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.27/composer.phar" title="Download version 1.10.27" aria-label="Download version 1.10.27">1.10.27</a> </td> <td style="width: 100px" role="cell">2023-09-29</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.27/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.27 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.27 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 </code> </td> <td role="cell"> <a href="/changelog/1.10.27" title="Changelog for version 1.10.27" aria-label="Changelog for version 1.10.27">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.26/composer.phar" title="Download version 1.10.26" aria-label="Download version 1.10.26">1.10.26</a> </td> <td style="width: 100px" role="cell">2022-04-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.26/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.26 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.26 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">cbfe1f85276c57abe464d934503d935aa213494ac286275c8dfabfa91e3dbdc4 </code> </td> <td role="cell"> <a href="/changelog/1.10.26" title="Changelog for version 1.10.26" aria-label="Changelog for version 1.10.26">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.25/composer.phar" title="Download version 1.10.25" aria-label="Download version 1.10.25">1.10.25</a> </td> <td style="width: 100px" role="cell">2022-01-21</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.25/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.25 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.25 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6b089bd8b78b00c3c15d7b13353fbcbdf16a3f5248203c9a3e76f13948f2de92 </code> </td> <td role="cell"> <a href="/changelog/1.10.25" title="Changelog for version 1.10.25" aria-label="Changelog for version 1.10.25">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.24/composer.phar" title="Download version 1.10.24" aria-label="Download version 1.10.24">1.10.24</a> </td> <td style="width: 100px" role="cell">2021-12-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.24/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.24 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.24 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">542ce16add6fd5ecfb0049dd49a0214e69a966a602b42c215adb19438c13a890 </code> </td> <td role="cell"> <a href="/changelog/1.10.24" title="Changelog for version 1.10.24" aria-label="Changelog for version 1.10.24">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.23/composer.phar" title="Download version 1.10.23" aria-label="Download version 1.10.23">1.10.23</a> </td> <td style="width: 100px" role="cell">2021-10-05</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.23/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.23 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.23 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2fc3ae370a979602a3bc2c950a38db02e51b4ca2072f7b8e15a518b443b835e7 </code> </td> <td role="cell"> <a href="/changelog/1.10.23" title="Changelog for version 1.10.23" aria-label="Changelog for version 1.10.23">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.22/composer.phar" title="Download version 1.10.22" aria-label="Download version 1.10.22">1.10.22</a> </td> <td style="width: 100px" role="cell">2021-04-27</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.22/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.22 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.22 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6127ae192d3b56cd6758c7c72fe2ac6868ecc835dae1451a004aca10ab1e0700 </code> </td> <td role="cell"> <a href="/changelog/1.10.22" title="Changelog for version 1.10.22" aria-label="Changelog for version 1.10.22">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.21/composer.phar" title="Download version 1.10.21" aria-label="Download version 1.10.21">1.10.21</a> </td> <td style="width: 100px" role="cell">2021-04-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.21/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.21 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.21 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1477d56da4a941de4203982c05b8a371ee4a9f2bb88a69f1b31c75d6bd6b8306 </code> </td> <td role="cell"> <a href="/changelog/1.10.21" title="Changelog for version 1.10.21" aria-label="Changelog for version 1.10.21">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.20/composer.phar" title="Download version 1.10.20" aria-label="Download version 1.10.20">1.10.20</a> </td> <td style="width: 100px" role="cell">2021-01-27</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.20/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.20 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.20 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e70b1024c194e07db02275dd26ed511ce620ede45c1e237b3ef51d5f8171348d </code> </td> <td role="cell"> <a href="/changelog/1.10.20" title="Changelog for version 1.10.20" aria-label="Changelog for version 1.10.20">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.19/composer.phar" title="Download version 1.10.19" aria-label="Download version 1.10.19">1.10.19</a> </td> <td style="width: 100px" role="cell">2020-12-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.19/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.19 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.19 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">688bf8f868643b420dded326614fcdf969572ac8ad7fbbb92c28a631157d39e8 </code> </td> <td role="cell"> <a href="/changelog/1.10.19" title="Changelog for version 1.10.19" aria-label="Changelog for version 1.10.19">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.18/composer.phar" title="Download version 1.10.18" aria-label="Download version 1.10.18">1.10.18</a> </td> <td style="width: 100px" role="cell">2020-12-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.18/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.18 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.18 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">322d769490aedb12f95fa5f32e2c20f5753b07700a259472db427ddcf843884b </code> </td> <td role="cell"> <a href="/changelog/1.10.18" title="Changelog for version 1.10.18" aria-label="Changelog for version 1.10.18">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.17/composer.phar" title="Download version 1.10.17" aria-label="Download version 1.10.17">1.10.17</a> </td> <td style="width: 100px" role="cell">2020-10-30</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.17/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.17 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.17 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6fa00eba5103ce6750f94f87af8356e12cc45d5bbb11a140533790cf60725f1c </code> </td> <td role="cell"> <a href="/changelog/1.10.17" title="Changelog for version 1.10.17" aria-label="Changelog for version 1.10.17">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.16/composer.phar" title="Download version 1.10.16" aria-label="Download version 1.10.16">1.10.16</a> </td> <td style="width: 100px" role="cell">2020-10-24</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.16/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.16 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.16 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e494bb438e44b9e4782c16940b229a8c46ea8a3baa9b908bf9db310cd0171ee2 </code> </td> <td role="cell"> <a href="/changelog/1.10.16" title="Changelog for version 1.10.16" aria-label="Changelog for version 1.10.16">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.15/composer.phar" title="Download version 1.10.15" aria-label="Download version 1.10.15">1.10.15</a> </td> <td style="width: 100px" role="cell">2020-10-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.15/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.15 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.15 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">a69df12e86a0a18fbedfc91a33d5f9acc5cf939576e0258326074fc1b2ee1aea </code> </td> <td role="cell"> <a href="/changelog/1.10.15" title="Changelog for version 1.10.15" aria-label="Changelog for version 1.10.15">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.14/composer.phar" title="Download version 1.10.14" aria-label="Download version 1.10.14">1.10.14</a> </td> <td style="width: 100px" role="cell">2020-10-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.14/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.14 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.14 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ec8c97badf06c1d51bdc2fe16d75bc7306a08a112b12a34563ff8da5d6621db7 </code> </td> <td role="cell"> <a href="/changelog/1.10.14" title="Changelog for version 1.10.14" aria-label="Changelog for version 1.10.14">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.13/composer.phar" title="Download version 1.10.13" aria-label="Download version 1.10.13">1.10.13</a> </td> <td style="width: 100px" role="cell">2020-09-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.13/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.13 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.13 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5ca7445cfd48dd27c5a84aa005a47b4d9fd91132313830609875df3a6973708f </code> </td> <td role="cell"> <a href="/changelog/1.10.13" title="Changelog for version 1.10.13" aria-label="Changelog for version 1.10.13">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.12/composer.phar" title="Download version 1.10.12" aria-label="Download version 1.10.12">1.10.12</a> </td> <td style="width: 100px" role="cell">2020-09-08</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.12/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.12 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.12 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ad32ebf620bffabe1e680802da610e8ba2eea4ecbbd76df973ce47d2ff192cba </code> </td> <td role="cell"> <a href="/changelog/1.10.12" title="Changelog for version 1.10.12" aria-label="Changelog for version 1.10.12">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.11/composer.phar" title="Download version 1.10.11" aria-label="Download version 1.10.11">1.10.11</a> </td> <td style="width: 100px" role="cell">2020-09-08</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.11/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.11 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.11 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6c4e61d21d2dd2c30da5e8dc244b302939678abaca82196eb0cf5ed7c9f4b143 </code> </td> <td role="cell"> <a href="/changelog/1.10.11" title="Changelog for version 1.10.11" aria-label="Changelog for version 1.10.11">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.10/composer.phar" title="Download version 1.10.10" aria-label="Download version 1.10.10">1.10.10</a> </td> <td style="width: 100px" role="cell">2020-08-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.10 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8f16aa77b1236ed40855d8d141c0a939d108a939c8e73f9f32eadd3f05f181b9 </code> </td> <td role="cell"> <a href="/changelog/1.10.10" title="Changelog for version 1.10.10" aria-label="Changelog for version 1.10.10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.9/composer.phar" title="Download version 1.10.9" aria-label="Download version 1.10.9">1.10.9</a> </td> <td style="width: 100px" role="cell">2020-07-16</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.9 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">70d6b9c3e0774b398a372dcb7f89dfe22fc25884e6e09ebf277286dd64cfaf35 </code> </td> <td role="cell"> <a href="/changelog/1.10.9" title="Changelog for version 1.10.9" aria-label="Changelog for version 1.10.9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.8/composer.phar" title="Download version 1.10.8" aria-label="Download version 1.10.8">1.10.8</a> </td> <td style="width: 100px" role="cell">2020-06-24</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.8 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4c40737f5d5f36d04f8b2df37171c6a1ff520efcadcb8626cc7c30bd4c5178e5 </code> </td> <td role="cell"> <a href="/changelog/1.10.8" title="Changelog for version 1.10.8" aria-label="Changelog for version 1.10.8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.7/composer.phar" title="Download version 1.10.7" aria-label="Download version 1.10.7">1.10.7</a> </td> <td style="width: 100px" role="cell">2020-06-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.7 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b94b872729668de5b5fbf62f16ff588d2a23480dda88c0e45cb43b721b75ae29 </code> </td> <td role="cell"> <a href="/changelog/1.10.7" title="Changelog for version 1.10.7" aria-label="Changelog for version 1.10.7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.6/composer.phar" title="Download version 1.10.6" aria-label="Download version 1.10.6">1.10.6</a> </td> <td style="width: 100px" role="cell">2020-05-06</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">29bdac1bda34d8902b9f9e4f5816de08879b8f3fafad901e4283519cdefbee7b </code> </td> <td role="cell"> <a href="/changelog/1.10.6" title="Changelog for version 1.10.6" aria-label="Changelog for version 1.10.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.5/composer.phar" title="Download version 1.10.5" aria-label="Download version 1.10.5">1.10.5</a> </td> <td style="width: 100px" role="cell">2020-04-10</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d5f3fddd0be28a5fc9bf2634a06f51bc9bd581fabda93fee7ca8ca781ae43129 </code> </td> <td role="cell"> <a href="/changelog/1.10.5" title="Changelog for version 1.10.5" aria-label="Changelog for version 1.10.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.4/composer.phar" title="Download version 1.10.4" aria-label="Download version 1.10.4">1.10.4</a> </td> <td style="width: 100px" role="cell">2020-04-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">642df93a823f7d45ea544b337542a405ceb3e6c0b7b04d48574801ca364bfa9a </code> </td> <td role="cell"> <a href="/changelog/1.10.4" title="Changelog for version 1.10.4" aria-label="Changelog for version 1.10.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.3/composer.phar" title="Download version 1.10.3" aria-label="Download version 1.10.3">1.10.3</a> </td> <td style="width: 100px" role="cell">2020-04-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2e162689cbb198943be915247c3cb34ba7810f9ee3c608288c6775668b22a98d </code> </td> <td role="cell"> <a href="/changelog/1.10.3" title="Changelog for version 1.10.3" aria-label="Changelog for version 1.10.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.2/composer.phar" title="Download version 1.10.2" aria-label="Download version 1.10.2">1.10.2</a> </td> <td style="width: 100px" role="cell">2020-04-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1faea4a90f74692a765181a3025ada7c8ed1a8f87ca3fae229471876841d8484 </code> </td> <td role="cell"> <a href="/changelog/1.10.2" title="Changelog for version 1.10.2" aria-label="Changelog for version 1.10.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.1/composer.phar" title="Download version 1.10.1" aria-label="Download version 1.10.1">1.10.1</a> </td> <td style="width: 100px" role="cell">2020-03-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1831f266580f221189dc04d4b58d7fc50c934ffc3a0eca89ecb4a53aa44867e2 </code> </td> <td role="cell"> <a href="/changelog/1.10.1" title="Changelog for version 1.10.1" aria-label="Changelog for version 1.10.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.0/composer.phar" title="Download version 1.10.0" aria-label="Download version 1.10.0">1.10.0</a> </td> <td style="width: 100px" role="cell">2020-03-10</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8ced713bde2d89468c3385588daf27dc6fc7bc7619f95239068608d303700b09 </code> </td> <td role="cell"> <a href="/changelog/1.10.0" title="Changelog for version 1.10.0" aria-label="Changelog for version 1.10.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.10.0-RC/composer.phar" title="Download version 1.10.0-RC" aria-label="Download version 1.10.0-RC">1.10.0-RC</a> </td> <td style="width: 100px" role="cell">2020-02-14</td> <td role="cell" style="width: 530px"> <a href="/download/1.10.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.10.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.10.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">58c5d690ec1ee348efed8d59e529dd322bca1d4f588d08eb20100f1c855bade4 </code> </td> <td role="cell"> <a href="/changelog/1.10.0-RC" title="Changelog for version 1.10.0-RC" aria-label="Changelog for version 1.10.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.9.3/composer.phar" title="Download version 1.9.3" aria-label="Download version 1.9.3">1.9.3</a> </td> <td style="width: 100px" role="cell">2020-02-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.9.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.9.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.9.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">551655c2fc81f4106508f42bbc4b24eabd34b022b13bc1e7d9642bf483d0a7d4 </code> </td> <td role="cell"> <a href="/changelog/1.9.3" title="Changelog for version 1.9.3" aria-label="Changelog for version 1.9.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.9.2/composer.phar" title="Download version 1.9.2" aria-label="Download version 1.9.2">1.9.2</a> </td> <td style="width: 100px" role="cell">2020-01-14</td> <td role="cell" style="width: 530px"> <a href="/download/1.9.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.9.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.9.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">58753998712ae435915a452d701ae28a9389653bbf36b3b6adf24e03d90a9467 </code> </td> <td role="cell"> <a href="/changelog/1.9.2" title="Changelog for version 1.9.2" aria-label="Changelog for version 1.9.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.9.1/composer.phar" title="Download version 1.9.1" aria-label="Download version 1.9.1">1.9.1</a> </td> <td style="width: 100px" role="cell">2019-11-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.9.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.9.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.9.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1f210b9037fcf82670d75892dfc44400f13fe9ada7af9e787f93e50e3b764111 </code> </td> <td role="cell"> <a href="/changelog/1.9.1" title="Changelog for version 1.9.1" aria-label="Changelog for version 1.9.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.9.0/composer.phar" title="Download version 1.9.0" aria-label="Download version 1.9.0">1.9.0</a> </td> <td style="width: 100px" role="cell">2019-08-02</td> <td role="cell" style="width: 530px"> <a href="/download/1.9.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.9.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.9.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c9dff69d092bdec14dee64df6677e7430163509798895fbd54891c166c5c0875 </code> </td> <td role="cell"> <a href="/changelog/1.9.0" title="Changelog for version 1.9.0" aria-label="Changelog for version 1.9.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.6/composer.phar" title="Download version 1.8.6" aria-label="Download version 1.8.6">1.8.6</a> </td> <td style="width: 100px" role="cell">2019-06-11</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b66f9b53db72c5117408defe8a1e00515fe749e97ce1b0ae8bdaa6a5a43dd542 </code> </td> <td role="cell"> <a href="/changelog/1.8.6" title="Changelog for version 1.8.6" aria-label="Changelog for version 1.8.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.5/composer.phar" title="Download version 1.8.5" aria-label="Download version 1.8.5">1.8.5</a> </td> <td style="width: 100px" role="cell">2019-04-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4e4c1cd74b54a26618699f3190e6f5fc63bb308b13fa660f71f2a2df047c0e17 </code> </td> <td role="cell"> <a href="/changelog/1.8.5" title="Changelog for version 1.8.5" aria-label="Changelog for version 1.8.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.4/composer.phar" title="Download version 1.8.4" aria-label="Download version 1.8.4">1.8.4</a> </td> <td style="width: 100px" role="cell">2019-02-11</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1722826c8fbeaf2d6cdd31c9c9af38694d6383a0f2bf476fe6bbd30939de058a </code> </td> <td role="cell"> <a href="/changelog/1.8.4" title="Changelog for version 1.8.4" aria-label="Changelog for version 1.8.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.3/composer.phar" title="Download version 1.8.3" aria-label="Download version 1.8.3">1.8.3</a> </td> <td style="width: 100px" role="cell">2019-01-30</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">5733ae9516e9185b7c3328d16dac75f3475f8ef137572dfb497f0f298157df33 </code> </td> <td role="cell"> <a href="/changelog/1.8.3" title="Changelog for version 1.8.3" aria-label="Changelog for version 1.8.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.2/composer.phar" title="Download version 1.8.2" aria-label="Download version 1.8.2">1.8.2</a> </td> <td style="width: 100px" role="cell">2019-01-29</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">489025eb489a2a70b8cdd7acd53f530e7be22a342b8c971a9d73091b898c7aed </code> </td> <td role="cell"> <a href="/changelog/1.8.2" title="Changelog for version 1.8.2" aria-label="Changelog for version 1.8.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.1/composer.phar" title="Download version 1.8.1" aria-label="Download version 1.8.1">1.8.1</a> </td> <td style="width: 100px" role="cell">2019-01-29</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ded65cb32160648146a264eaf4b4919308b3f1fdc8e38a0dde8406396860dfab </code> </td> <td role="cell"> <a href="/changelog/1.8.1" title="Changelog for version 1.8.1" aria-label="Changelog for version 1.8.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.8.0/composer.phar" title="Download version 1.8.0" aria-label="Download version 1.8.0">1.8.0</a> </td> <td style="width: 100px" role="cell">2018-12-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.8.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.8.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.8.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">0901a84d56f6d6ae8f8b96b0c131d4f51ccaf169d491813d2bcedf2a6e4cefa6 </code> </td> <td role="cell"> <a href="/changelog/1.8.0" title="Changelog for version 1.8.0" aria-label="Changelog for version 1.8.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.7.3/composer.phar" title="Download version 1.7.3" aria-label="Download version 1.7.3">1.7.3</a> </td> <td style="width: 100px" role="cell">2018-11-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.7.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.7.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.7.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">bc6cbcd2c0fbc03c7ab87442b5f1fbc9407f0b9900bddc10d755bdc81bbe7b6e </code> </td> <td role="cell"> <a href="/changelog/1.7.3" title="Changelog for version 1.7.3" aria-label="Changelog for version 1.7.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.7.2/composer.phar" title="Download version 1.7.2" aria-label="Download version 1.7.2">1.7.2</a> </td> <td style="width: 100px" role="cell">2018-08-16</td> <td role="cell" style="width: 530px"> <a href="/download/1.7.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.7.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.7.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">ec3428d049ae8877f7d102c2ee050dbd51a160fc2dde323f3e126a3b3846750e </code> </td> <td role="cell"> <a href="/changelog/1.7.2" title="Changelog for version 1.7.2" aria-label="Changelog for version 1.7.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.7.1/composer.phar" title="Download version 1.7.1" aria-label="Download version 1.7.1">1.7.1</a> </td> <td style="width: 100px" role="cell">2018-08-07</td> <td role="cell" style="width: 530px"> <a href="/download/1.7.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.7.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.7.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1c0e95dc3f33985f9eeabb6f57896c0f9d46b7c9e70ad7bf2210a5508869a8fa </code> </td> <td role="cell"> <a href="/changelog/1.7.1" title="Changelog for version 1.7.1" aria-label="Changelog for version 1.7.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.7.0/composer.phar" title="Download version 1.7.0" aria-label="Download version 1.7.0">1.7.0</a> </td> <td style="width: 100px" role="cell">2018-08-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.7.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.7.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.7.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">88068af567884a6266ef255d3d17053f583c9074dc75161b7a35eda8e553849a </code> </td> <td role="cell"> <a href="/changelog/1.7.0" title="Changelog for version 1.7.0" aria-label="Changelog for version 1.7.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.7.0-RC/composer.phar" title="Download version 1.7.0-RC" aria-label="Download version 1.7.0-RC">1.7.0-RC</a> </td> <td style="width: 100px" role="cell">2018-07-24</td> <td role="cell" style="width: 530px"> <a href="/download/1.7.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.7.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.7.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">902d97573567b72a07754b20c64949ba878bb85571c0d3e5c6ddae66ffb278c0 </code> </td> <td role="cell"> <a href="/changelog/1.7.0-RC" title="Changelog for version 1.7.0-RC" aria-label="Changelog for version 1.7.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.5/composer.phar" title="Download version 1.6.5" aria-label="Download version 1.6.5">1.6.5</a> </td> <td style="width: 100px" role="cell">2018-05-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">67bebe9df9866a795078bb2cf21798d8b0214f2e0b2fd81f2e907a8ef0be3434 </code> </td> <td role="cell"> <a href="/changelog/1.6.5" title="Changelog for version 1.6.5" aria-label="Changelog for version 1.6.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.4/composer.phar" title="Download version 1.6.4" aria-label="Download version 1.6.4">1.6.4</a> </td> <td style="width: 100px" role="cell">2018-04-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8d0d9246f68532cc8fd6a47a58d195f0c849d26430f93c397a3176fc2d971ded </code> </td> <td role="cell"> <a href="/changelog/1.6.4" title="Changelog for version 1.6.4" aria-label="Changelog for version 1.6.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.3/composer.phar" title="Download version 1.6.3" aria-label="Download version 1.6.3">1.6.3</a> </td> <td style="width: 100px" role="cell">2018-01-31</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">52cb7bbbaee720471e3b34c8ae6db53a38f0b759c06078a80080db739e4dcab6 </code> </td> <td role="cell"> <a href="/changelog/1.6.3" title="Changelog for version 1.6.3" aria-label="Changelog for version 1.6.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.2/composer.phar" title="Download version 1.6.2" aria-label="Download version 1.6.2">1.6.2</a> </td> <td style="width: 100px" role="cell">2018-01-05</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6ec386528e64186dfe4e3a68a4be57992f931459209fd3d45dde64f5efb25276 </code> </td> <td role="cell"> <a href="/changelog/1.6.2" title="Changelog for version 1.6.2" aria-label="Changelog for version 1.6.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.1/composer.phar" title="Download version 1.6.1" aria-label="Download version 1.6.1">1.6.1</a> </td> <td style="width: 100px" role="cell">2018-01-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">71b6701ab75c93d0986b3e906d9d2586f0ae1b3e611583210a9542021861f581 </code> </td> <td role="cell"> <a href="/changelog/1.6.1" title="Changelog for version 1.6.1" aria-label="Changelog for version 1.6.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.0/composer.phar" title="Download version 1.6.0" aria-label="Download version 1.6.0">1.6.0</a> </td> <td style="width: 100px" role="cell">2018-01-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">45031b4ae95bb6f4bdd33704a1932bfb8b56f5a590ee16b4946f481903c28fd1 </code> </td> <td role="cell"> <a href="/changelog/1.6.0" title="Changelog for version 1.6.0" aria-label="Changelog for version 1.6.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.6.0-RC/composer.phar" title="Download version 1.6.0-RC" aria-label="Download version 1.6.0-RC">1.6.0-RC</a> </td> <td style="width: 100px" role="cell">2017-12-19</td> <td role="cell" style="width: 530px"> <a href="/download/1.6.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.6.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.6.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">fbbc2a8085331976ff08a7920230a30e38b847b1f3bfbae54e1c0ea6676b2fae </code> </td> <td role="cell"> <a href="/changelog/1.6.0-RC" title="Changelog for version 1.6.0-RC" aria-label="Changelog for version 1.6.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.6/composer.phar" title="Download version 1.5.6" aria-label="Download version 1.5.6">1.5.6</a> </td> <td style="width: 100px" role="cell">2017-12-18</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.6 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">25e75d72818c4f1d46b3ae47a8deaaf4ef25c87198329d4a6ee53601b00459e5 </code> </td> <td role="cell"> <a href="/changelog/1.5.6" title="Changelog for version 1.5.6" aria-label="Changelog for version 1.5.6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.5/composer.phar" title="Download version 1.5.5" aria-label="Download version 1.5.5">1.5.5</a> </td> <td style="width: 100px" role="cell">2017-12-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.5 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8ef8c4fb73c8cc1e950119799aec31e0ae5913dab8dd8f53d9c2e3985ac3ad2b </code> </td> <td role="cell"> <a href="/changelog/1.5.5" title="Changelog for version 1.5.5" aria-label="Changelog for version 1.5.5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.4/composer.phar" title="Download version 1.5.4" aria-label="Download version 1.5.4">1.5.4</a> </td> <td style="width: 100px" role="cell">2017-12-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b85461bb94c1abf1ccaa6832a7992c08d2d851f844c575626766554bd96de8c3 </code> </td> <td role="cell"> <a href="/changelog/1.5.4" title="Changelog for version 1.5.4" aria-label="Changelog for version 1.5.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.3/composer.phar" title="Download version 1.5.3" aria-label="Download version 1.5.3">1.5.3</a> </td> <td style="width: 100px" role="cell">2017-11-30</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f50e3b1d7daa6afc532341e52735db32819310cb2f63cb166f69dc7e074a657e </code> </td> <td role="cell"> <a href="/changelog/1.5.3" title="Changelog for version 1.5.3" aria-label="Changelog for version 1.5.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.2/composer.phar" title="Download version 1.5.2" aria-label="Download version 1.5.2">1.5.2</a> </td> <td style="width: 100px" role="cell">2017-09-11</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c0a5519c768ef854913206d45bd360efc2eb4a3e6eb1e1c7d0a4b5e0d3bbb31f </code> </td> <td role="cell"> <a href="/changelog/1.5.2" title="Changelog for version 1.5.2" aria-label="Changelog for version 1.5.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.1/composer.phar" title="Download version 1.5.1" aria-label="Download version 1.5.1">1.5.1</a> </td> <td style="width: 100px" role="cell">2017-08-09</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2745e7b8cced2e97f84b9e9cb0f9c401702f47cecea5a67f095ac4fa1a44fb80 </code> </td> <td role="cell"> <a href="/changelog/1.5.1" title="Changelog for version 1.5.1" aria-label="Changelog for version 1.5.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.5.0/composer.phar" title="Download version 1.5.0" aria-label="Download version 1.5.0">1.5.0</a> </td> <td style="width: 100px" role="cell">2017-08-08</td> <td role="cell" style="width: 530px"> <a href="/download/1.5.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.5.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.5.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8a9f570241f1f858529c13f4d09d38b3379fe1a1d27cb74bc71093f1a8f1b225 </code> </td> <td role="cell"> <a href="/changelog/1.5.0" title="Changelog for version 1.5.0" aria-label="Changelog for version 1.5.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.4.3/composer.phar" title="Download version 1.4.3" aria-label="Download version 1.4.3">1.4.3</a> </td> <td style="width: 100px" role="cell">2017-08-06</td> <td role="cell" style="width: 530px"> <a href="/download/1.4.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.4.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.4.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">03fc40c59e1e5711d61d6f340e9159ac94701107e0fe05aa795b611d004bdf35 </code> </td> <td role="cell"> <a href="/changelog/1.4.3" title="Changelog for version 1.4.3" aria-label="Changelog for version 1.4.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.4.2/composer.phar" title="Download version 1.4.2" aria-label="Download version 1.4.2">1.4.2</a> </td> <td style="width: 100px" role="cell">2017-05-17</td> <td role="cell" style="width: 530px"> <a href="/download/1.4.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.4.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.4.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6b1945c3ee477f12be508a5bb41a5025d57de5510bcf94855ae6a4d59f3d86f4 </code> </td> <td role="cell"> <a href="/changelog/1.4.2" title="Changelog for version 1.4.2" aria-label="Changelog for version 1.4.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.4.1/composer.phar" title="Download version 1.4.1" aria-label="Download version 1.4.1">1.4.1</a> </td> <td style="width: 100px" role="cell">2017-03-10</td> <td role="cell" style="width: 530px"> <a href="/download/1.4.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.4.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.4.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc </code> </td> <td role="cell"> <a href="/changelog/1.4.1" title="Changelog for version 1.4.1" aria-label="Changelog for version 1.4.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.4.0/composer.phar" title="Download version 1.4.0" aria-label="Download version 1.4.0">1.4.0</a> </td> <td style="width: 100px" role="cell">2017-03-08</td> <td role="cell" style="width: 530px"> <a href="/download/1.4.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.4.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.4.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2e2d851f9ff3c9b526bfecc2e7f020cc7a74d8f64fbb403061d13f23f091a137 </code> </td> <td role="cell"> <a href="/changelog/1.4.0" title="Changelog for version 1.4.0" aria-label="Changelog for version 1.4.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.3.3/composer.phar" title="Download version 1.3.3" aria-label="Download version 1.3.3">1.3.3</a> </td> <td style="width: 100px" role="cell">2017-03-08</td> <td role="cell" style="width: 530px"> <a href="/download/1.3.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.3.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.3.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">2a63562e756a27b0f0391461bcf06306b3cfdaef54beec3728dde94e94a99d96 </code> </td> <td role="cell"> <a href="/changelog/1.3.3" title="Changelog for version 1.3.3" aria-label="Changelog for version 1.3.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.3.2/composer.phar" title="Download version 1.3.2" aria-label="Download version 1.3.2">1.3.2</a> </td> <td style="width: 100px" role="cell">2017-01-27</td> <td role="cell" style="width: 530px"> <a href="/download/1.3.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.3.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.3.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">6a4f761aa34bb69fca86bc411a5e9836ca8246f0fcd29f3804b174fee9fb0569 </code> </td> <td role="cell"> <a href="/changelog/1.3.2" title="Changelog for version 1.3.2" aria-label="Changelog for version 1.3.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.3.1/composer.phar" title="Download version 1.3.1" aria-label="Download version 1.3.1">1.3.1</a> </td> <td style="width: 100px" role="cell">2017-01-07</td> <td role="cell" style="width: 530px"> <a href="/download/1.3.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.3.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.3.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">f3e0faddf49039edf40ab62c497e0926286e8871a50228fd90ea91dcebbd15c3 </code> </td> <td role="cell"> <a href="/changelog/1.3.1" title="Changelog for version 1.3.1" aria-label="Changelog for version 1.3.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.3.0/composer.phar" title="Download version 1.3.0" aria-label="Download version 1.3.0">1.3.0</a> </td> <td style="width: 100px" role="cell">2016-12-23</td> <td role="cell" style="width: 530px"> <a href="/download/1.3.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.3.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.3.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">92ce3125cae2015c5c1f7657e78a6e239ff47b714eb1418288abf45d55f3be27 </code> </td> <td role="cell"> <a href="/changelog/1.3.0" title="Changelog for version 1.3.0" aria-label="Changelog for version 1.3.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.3.0-RC/composer.phar" title="Download version 1.3.0-RC" aria-label="Download version 1.3.0-RC">1.3.0-RC</a> </td> <td style="width: 100px" role="cell">2016-12-11</td> <td role="cell" style="width: 530px"> <a href="/download/1.3.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.3.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.3.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">e21e98f17932a49a00bfbb1397b62c79f4e22937b09ff4d2fec92fca82381011 </code> </td> <td role="cell"> <a href="/changelog/1.3.0-RC" title="Changelog for version 1.3.0-RC" aria-label="Changelog for version 1.3.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.4/composer.phar" title="Download version 1.2.4" aria-label="Download version 1.2.4">1.2.4</a> </td> <td style="width: 100px" role="cell">2016-12-06</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3c900579659b79a4e528722e35bd160c86090e370e9cb41cc07c7a22c674c657 </code> </td> <td role="cell"> <a href="/changelog/1.2.4" title="Changelog for version 1.2.4" aria-label="Changelog for version 1.2.4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.3/composer.phar" title="Download version 1.2.3" aria-label="Download version 1.2.3">1.2.3</a> </td> <td style="width: 100px" role="cell">2016-12-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">3378c1422bffa09c29714aefd3240b963ce7731e71ae8894d9c7991101325cb8 </code> </td> <td role="cell"> <a href="/changelog/1.2.3" title="Changelog for version 1.2.3" aria-label="Changelog for version 1.2.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.2/composer.phar" title="Download version 1.2.2" aria-label="Download version 1.2.2">1.2.2</a> </td> <td style="width: 100px" role="cell">2016-11-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c6ae4e099351233f5f82ade9738475eec6587aadf9ffe66fec4c350b329fbb32 </code> </td> <td role="cell"> <a href="/changelog/1.2.2" title="Changelog for version 1.2.2" aria-label="Changelog for version 1.2.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.1/composer.phar" title="Download version 1.2.1" aria-label="Download version 1.2.1">1.2.1</a> </td> <td style="width: 100px" role="cell">2016-09-12</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">c2e04040b807a8530e5c83de56bdaaf63a0f183f8fd449bbe6e41f660e647427 </code> </td> <td role="cell"> <a href="/changelog/1.2.1" title="Changelog for version 1.2.1" aria-label="Changelog for version 1.2.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.0/composer.phar" title="Download version 1.2.0" aria-label="Download version 1.2.0">1.2.0</a> </td> <td style="width: 100px" role="cell">2016-07-18</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">dc80131545ed7f7b1369ae058824587f0718892f6a84bd86cfb0f28ab5e39095 </code> </td> <td role="cell"> <a href="/changelog/1.2.0" title="Changelog for version 1.2.0" aria-label="Changelog for version 1.2.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.2.0-RC/composer.phar" title="Download version 1.2.0-RC" aria-label="Download version 1.2.0-RC">1.2.0-RC</a> </td> <td style="width: 100px" role="cell">2016-07-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.2.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.2.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.2.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1e1dddd7fbccd5de565cfb0429020d4f9f95a6207b48952d939aadcf891d2fdc </code> </td> <td role="cell"> <a href="/changelog/1.2.0-RC" title="Changelog for version 1.2.0-RC" aria-label="Changelog for version 1.2.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.1.3/composer.phar" title="Download version 1.1.3" aria-label="Download version 1.1.3">1.1.3</a> </td> <td style="width: 100px" role="cell">2016-06-26</td> <td role="cell" style="width: 530px"> <a href="/download/1.1.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.1.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.1.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4349ef555c8478b8fe148b10957bc40d696ce7b8cdeb7d50d3d684a854dca5cc </code> </td> <td role="cell"> <a href="/changelog/1.1.3" title="Changelog for version 1.1.3" aria-label="Changelog for version 1.1.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.1.2/composer.phar" title="Download version 1.1.2" aria-label="Download version 1.1.2">1.1.2</a> </td> <td style="width: 100px" role="cell">2016-05-31</td> <td role="cell" style="width: 530px"> <a href="/download/1.1.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.1.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.1.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7af2409080619e2ba98e78d7675710c23acf2ccf088d4439a4f79c33ed85c505 </code> </td> <td role="cell"> <a href="/changelog/1.1.2" title="Changelog for version 1.1.2" aria-label="Changelog for version 1.1.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.1.1/composer.phar" title="Download version 1.1.1" aria-label="Download version 1.1.1">1.1.1</a> </td> <td style="width: 100px" role="cell">2016-05-17</td> <td role="cell" style="width: 530px"> <a href="/download/1.1.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.1.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.1.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7f26efee06de5a1a061b6b1e330f5acc9ee69976d1551118c45b21f358cbc332 </code> </td> <td role="cell"> <a href="/changelog/1.1.1" title="Changelog for version 1.1.1" aria-label="Changelog for version 1.1.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.1.0/composer.phar" title="Download version 1.1.0" aria-label="Download version 1.1.0">1.1.0</a> </td> <td style="width: 100px" role="cell">2016-05-10</td> <td role="cell" style="width: 530px"> <a href="/download/1.1.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.1.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.1.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">d8e1d21081b7076dfc9a570620e082111ab196dabd83780e50025c52d62b801c </code> </td> <td role="cell"> <a href="/changelog/1.1.0" title="Changelog for version 1.1.0" aria-label="Changelog for version 1.1.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.1.0-RC/composer.phar" title="Download version 1.1.0-RC" aria-label="Download version 1.1.0-RC">1.1.0-RC</a> </td> <td style="width: 100px" role="cell">2016-04-29</td> <td role="cell" style="width: 530px"> <a href="/download/1.1.0-RC/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.1.0-RC in sha256sum format" aria-label="Download the SHA256 checksum for version 1.1.0-RC in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">31e771ed24f3db45019a073fe9e43a6a8e75249962012955cd105ebec0a08100 </code> </td> <td role="cell"> <a href="/changelog/1.1.0-RC" title="Changelog for version 1.1.0-RC" aria-label="Changelog for version 1.1.0-RC">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.3/composer.phar" title="Download version 1.0.3" aria-label="Download version 1.0.3">1.0.3</a> </td> <td style="width: 100px" role="cell">2016-04-29</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">78c5c0e3f41dcd4d6ee532d9ae7e23afa33bdd409d8824dff026f3991d6ad70a </code> </td> <td role="cell"> <a href="/changelog/1.0.3" title="Changelog for version 1.0.3" aria-label="Changelog for version 1.0.3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.2/composer.phar" title="Download version 1.0.2" aria-label="Download version 1.0.2">1.0.2</a> </td> <td style="width: 100px" role="cell">2016-04-21</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">264673ccee900b22192605b8c74ecb77c45a5197347edacd142699866c478f4c </code> </td> <td role="cell"> <a href="/changelog/1.0.2" title="Changelog for version 1.0.2" aria-label="Changelog for version 1.0.2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.1/composer.phar" title="Download version 1.0.1" aria-label="Download version 1.0.1">1.0.1</a> </td> <td style="width: 100px" role="cell">2016-04-18</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">de069dae8c7bf01adedc925d3ac2358e5318a1b05580b001aa04e585fa55d8c0 </code> </td> <td role="cell"> <a href="/changelog/1.0.1" title="Changelog for version 1.0.1" aria-label="Changelog for version 1.0.1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0/composer.phar" title="Download version 1.0.0" aria-label="Download version 1.0.0">1.0.0</a> </td> <td style="width: 100px" role="cell">2016-04-05</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1acc000cf23bd9d19e1590c2edeb44fb915f88d85f1798925ec989c601db0bd6 </code> </td> <td role="cell"> <a href="/changelog/1.0.0" title="Changelog for version 1.0.0" aria-label="Changelog for version 1.0.0">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-beta2/composer.phar" title="Download version 1.0.0-beta2" aria-label="Download version 1.0.0-beta2">1.0.0-beta2</a> </td> <td style="width: 100px" role="cell">2016-03-27</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-beta2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-beta2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-beta2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">128f8c7ad49a71e4abda885ca52c603e370d5cbed85479ae1eab4a58a398a6a4 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-beta2" title="Changelog for version 1.0.0-beta2" aria-label="Changelog for version 1.0.0-beta2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-beta1/composer.phar" title="Download version 1.0.0-beta1" aria-label="Download version 1.0.0-beta1">1.0.0-beta1</a> </td> <td style="width: 100px" role="cell">2016-03-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-beta1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-beta1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-beta1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">4344038a546bd0e9e2c4fa53bced1c7faef1bcccab09b2276ddd5cc01e4e022a </code> </td> <td role="cell"> <a href="/changelog/1.0.0-beta1" title="Changelog for version 1.0.0-beta1" aria-label="Changelog for version 1.0.0-beta1">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha11/composer.phar" title="Download version 1.0.0-alpha11" aria-label="Download version 1.0.0-alpha11">1.0.0-alpha11</a> </td> <td style="width: 100px" role="cell">2015-11-14</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha11/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha11 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha11 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">47347f16d366145eafb45d2e800012dc80cb8fc08d1d299849825c51465381ac </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha11" title="Changelog for version 1.0.0-alpha11" aria-label="Changelog for version 1.0.0-alpha11">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha10/composer.phar" title="Download version 1.0.0-alpha10" aria-label="Download version 1.0.0-alpha10">1.0.0-alpha10</a> </td> <td style="width: 100px" role="cell">2015-04-14</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha10/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha10 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha10 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">9f2c7d0364bc743bcde9cfe1fe84749e5ac38c46d47cf42966ce499135fd4628 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha10" title="Changelog for version 1.0.0-alpha10" aria-label="Changelog for version 1.0.0-alpha10">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha9/composer.phar" title="Download version 1.0.0-alpha9" aria-label="Download version 1.0.0-alpha9">1.0.0-alpha9</a> </td> <td style="width: 100px" role="cell">2014-12-07</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha9/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha9 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha9 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">33ef1c07649bc1e135e73f0944415753233faf803cff493006f8bd9e744ff1f4 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha9" title="Changelog for version 1.0.0-alpha9" aria-label="Changelog for version 1.0.0-alpha9">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha8/composer.phar" title="Download version 1.0.0-alpha8" aria-label="Download version 1.0.0-alpha8">1.0.0-alpha8</a> </td> <td style="width: 100px" role="cell">2014-01-06</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha8/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha8 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha8 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">1c73973d7cfb73f3e6b425b943a3e1459f5199984f37f008c48cf2b671dd3f2b </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha8" title="Changelog for version 1.0.0-alpha8" aria-label="Changelog for version 1.0.0-alpha8">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha7/composer.phar" title="Download version 1.0.0-alpha7" aria-label="Download version 1.0.0-alpha7">1.0.0-alpha7</a> </td> <td style="width: 100px" role="cell">2013-05-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha7/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha7 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha7 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">8fb4ac2da72856394b4bdd65d470797b23c27d496821a456046527fe6ccc9786 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha7" title="Changelog for version 1.0.0-alpha7" aria-label="Changelog for version 1.0.0-alpha7">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha6/composer.phar" title="Download version 1.0.0-alpha6" aria-label="Download version 1.0.0-alpha6">1.0.0-alpha6</a> </td> <td style="width: 100px" role="cell">2012-10-23</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha6/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha6 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha6 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">eacac2a637de230e6091fdb45e893705049f929c271a5dc90d2c9eac0f44c5c4 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha6" title="Changelog for version 1.0.0-alpha6" aria-label="Changelog for version 1.0.0-alpha6">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha5/composer.phar" title="Download version 1.0.0-alpha5" aria-label="Download version 1.0.0-alpha5">1.0.0-alpha5</a> </td> <td style="width: 100px" role="cell">2012-08-18</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha5/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha5 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha5 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7e0fd9248b0f03ddbb3d20d4be2d130fecce432b66ff96f6e99a906f85d82796 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha5" title="Changelog for version 1.0.0-alpha5" aria-label="Changelog for version 1.0.0-alpha5">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha4/composer.phar" title="Download version 1.0.0-alpha4" aria-label="Download version 1.0.0-alpha4">1.0.0-alpha4</a> </td> <td style="width: 100px" role="cell">2012-07-04</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha4/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha4 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha4 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">b1f5737a3916ad34f74566be51d21f3597d9aebaa382d942c5bda4d1338008b3 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha4" title="Changelog for version 1.0.0-alpha4" aria-label="Changelog for version 1.0.0-alpha4">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha3/composer.phar" title="Download version 1.0.0-alpha3" aria-label="Download version 1.0.0-alpha3">1.0.0-alpha3</a> </td> <td style="width: 100px" role="cell">2012-05-13</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha3/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha3 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha3 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">7cac0a430602342a60949e580d49fefde57b5ff53d4b488e18d78aabf57eef19 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha3" title="Changelog for version 1.0.0-alpha3" aria-label="Changelog for version 1.0.0-alpha3">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha2/composer.phar" title="Download version 1.0.0-alpha2" aria-label="Download version 1.0.0-alpha2">1.0.0-alpha2</a> </td> <td style="width: 100px" role="cell">2012-04-03</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha2/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha2 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha2 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">acc373396d66d0083231a9d90691886e894ccca778398258e44c3dab60db2363 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha2" title="Changelog for version 1.0.0-alpha2" aria-label="Changelog for version 1.0.0-alpha2">changelog</a> </td> </tr> <tr role="row"> <td style="width: 100px" role="cell"> <a href="/download/1.0.0-alpha1/composer.phar" title="Download version 1.0.0-alpha1" aria-label="Download version 1.0.0-alpha1">1.0.0-alpha1</a> </td> <td style="width: 100px" role="cell">2012-03-01</td> <td role="cell" style="width: 530px"> <a href="/download/1.0.0-alpha1/composer.phar.sha256sum" title="Download the SHA256 checksum for version 1.0.0-alpha1 in sha256sum format" aria-label="Download the SHA256 checksum for version 1.0.0-alpha1 in sha256sum format">sha256sum</a> <code style="font-size: 0.7em; position: relative; top: -2px" aria-label="sha256 checksum" title="sha256 checksum">dd703cf132b2a6bb9b2a407ef8834cab9f433cf04f252f1a125b09f8f7a46912 </code> </td> <td role="cell"> <a href="/changelog/1.0.0-alpha1" title="Changelog for version 1.0.0-alpha1" aria-label="Changelog for version 1.0.0-alpha1">changelog</a> </td> </tr> </table> </div> </main> <footer> <p class="license"> Composer and all content on this site are released under the <a href="https://github.com/composer/composer/blob/main/LICENSE" title="View the MIT license (external link to GitHub.com)" aria-label="View the MIT license (external link to GitHub.com)">MIT license</a>. </p> </footer> </div> <script src="/build/app.js?v=2"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10