PHPackages                             verticaltab/pillow - 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. verticaltab/pillow

AbandonedLibrary[API Development](/categories/api)

verticaltab/pillow
==================

Zillow PHP client

0.1.2(7y ago)2110.9k3[2 issues](https://github.com/VerticalTab/Pillow/issues)MITPHPPHP &gt;=5.3.0

Since Dec 16Pushed 7y ago8 watchersCompare

[ Source](https://github.com/VerticalTab/Pillow)[ Packagist](https://packagist.org/packages/verticaltab/pillow)[ Docs](https://github.com/VerticalTab/Pillow)[ RSS](/packages/verticaltab-pillow/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

Pillow - Zillow PHP client
==========================

[](#pillow---zillow-php-client)

This library provides a PHP interface for the Zillow API.

See: [zillow.com](http://www.zillow.com/howto/api/APIOverview.htm) for more information.

Currently, only these API calls are supported:

If there is one you'd really like to see implemented, you can create an [issue](https://github.com/VerticalTab/Pillow/issues) and/or fork, implement, and submit a pull request.

Requirements
------------

[](#requirements)

PHP &gt;= 5.3

Installation
------------

[](#installation)

The preferred method of installation is [composer](http://getcomposer.org/). In you project root (not web root), create a minimum [composer.json](http://packagist.org/) file:

```
{
    "require": {
        "VerticalTab/Pillow": "x.x.x"
    }
}

```

Replace "x.x.x" above with the tag number you want to use. Note: see [VeriticalTab/Pillow Packagist page](http://packagist.org/packages/VerticalTab/Pillow)for latest release information.

Next, get composer and use it to install (again, in your project root)

```
$ wget http://getcomposer.org/composer.phar
$ php composer.phar install

```

This will put the library into your vendors directory.

Updating
--------

[](#updating)

To update after installation, edit the "require" section in composer.json. Then update:

```
$ php composer.phar update

```

Examples
--------

[](#examples)

File: simple.php

```
