Installation
CompatInfo may be installed in several ways, choose your favorite.
Requirements
Before you install PHP CompatInfo, you will need an operating system with PHP 5.3.0 or later installed,
Composer
Put a file named composer.json at the root of your project, with the content below:
{ "require": { "bartlett/php-compatinfo": "~3.2" } }
And ask Composer to install the dependencies:
$ php composer.phar install
You can also use Composer to create a new project from an existing CompatInfo package. This is the equivalent of doing a git clone checkout followed by a composer install of the vendors.
$ php composer.phar create-project bartlett/php-compatinfo path 3.2.0
Where path
is your install directory.
PHAR
The recommended way for newbies, or just to have a look on features of this library, is to download a PHP Archive that contain all required dependencies of PHP CompatInfo bundled in a single file.
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo.phar $ chmod +x phpcompatinfo.phar $ mv phpcompatinfo.phar /usr/local/bin/phpcompatinfo $ phpcompatinfo
You can also immediately use the PHAR after you have downloaded it.
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo.phar $ php phpcompatinfo.phar