PHPackages                             arthurnumen/fastly - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. arthurnumen/fastly

ActiveLibrary[API Development](/categories/api)

arthurnumen/fastly
==================

Provides a PHP client for the Fastly API

v0.3.0(10y ago)0269MITPHPPHP &gt;=5.5.0

Since Jul 1Pushed 9y agoCompare

[ Source](https://github.com/arthurnumen/fastly-php)[ Packagist](https://packagist.org/packages/arthurnumen/fastly)[ RSS](/packages/arthurnumen-fastly/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

Fastly PHP Client [![Build Status](https://camo.githubusercontent.com/0ec09d40162638d7f1764ce060bc2e0213da0589c0e6c55101b330f4538d7e8c/68747470733a2f2f7472617669732d63692e6f72672f666173746c792f666173746c792d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/fastly/fastly-php)
====================================================================================================================================================================================================================================================================================================

[](#fastly-php-client-)

Installation via Composer
-------------------------

[](#installation-via-composer)

The recommended method to install *Fastly-PHP* is through [Composer](http://getcomposer.org).

1. Add `fastly/fastly` as a dependency in your project's `composer.json`:

    ```
        {
            "require": {
                "fastly/fastly": "~0.2"
            }
        }
    ```
2. Download and install Composer:

    ```
        curl -s http://getcomposer.org/installer | php
    ```
3. Install your dependencies:

    ```
        php composer.phar install --no-dev
    ```
4. Require Composer's autoloader

    Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:

    ```
