You are currently viewing version 4.0 documentation.


Prerequisites

PHP PhantomJS requires PHP 5.4.0 or greater to run.

Installing via Composer

Install Composer for your project:

    #bash

    $ curl -s http://getcomposer.org/installer | php

Create a composer.json file in the root of your project:

    #composer.json

    {
        "require": {
            "jonnyw/php-phantomjs": "4.*"
        },
        "config": {
            "bin-dir": "bin"
        },
        "scripts": {
            "post-install-cmd": [
                "PhantomInstaller\\Installer::installPhantomJS"
            ],
            "post-update-cmd": [
                "PhantomInstaller\\Installer::installPhantomJS"
            ]
        }
    }

It is important that you have the ‘scripts’ section shown above in your composer.json file as it will install the latest version of PhantomJS for your system to your project’s bin folder. It is recommended that you create a bin folder in the root of your project as this is where the PHP PhantomJS library will look for your PhantomJS executable. If you would prefer to use a PhantomJS executable in a custom location, see the Custom Installation section.

Finally, install the composer depedencies for your project:

    
    #bash
    
    $ php composer.phar install

Custom Installation

If you would prefer to use a custom install location for the PhantomJS executable, for example you have PhantomJS installed globally, then you simply need to set the path to PhantomJS manually:

    
    <?php
    
    use JonnyW\PhantomJs\Client;

    $client = Client::getInstance();
    $client->getEngine()->setPath('/path/to/phantomjs');

If you would like composer to install the PhantomJS executable to a custom bin location when installing dependencies, set the bin dir location in your project’s composer.json file:

    #composer.json

    {
        "config": {
            "bin-dir": "/path/to/your/projects/bin/dir"
        }
    }

You will need to make sure that this directory exists and is writable by Composer before running the composer install.

Once you have updated your bin location run composer install to install PhantomJS:

    
    #bash
    
    $ php composer.phar install

This should install the correct PhantomJS executable for your system in the bin locaiton you defined in your composer.json file.

Installing from tarball

The PHP PhantomJS library contains several depedencies in order to function so it is recommended that you install it via composer as this will handle your dependencies for you. If you do wish to install it from a tarball release then you will need to install the dependencies manually.

The PHP PhantomJS library currently requires the following depdencies:

Make sure the components are in your include path and that the PhantomJS executable is installed to your projects bin folder as mentioned in the Custom Installation section.