PHPackages                             ovk/fastly-php - 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. ovk/fastly-php

ActiveLibrary[API Development](/categories/api)

ovk/fastly-php
==============

Provides a PHP client for the Fastly API

v1.0.0(7y ago)0131MITPHPPHP &gt;=7.1

Since Jul 1Pushed 7y agoCompare

[ Source](https://github.com/Overkontrol/fastly-php)[ Packagist](https://packagist.org/packages/ovk/fastly-php)[ RSS](/packages/ovk-fastly-php/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (2)Dependencies (1)Versions (7)Used By (0)

Fastly PHP Client
=================

[](#fastly-php-client)

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

[](#installation-via-composer)

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

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

    ```
        {
            "require": {
                "ovk/fastly-php": "~1.0.0"
            }
        }
    ```
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:

    ```
