kmj/zillowbundle

Symfony2 Bundle that provides classes for Zillow API

Maintainers

Package info

github.com/Demoboy/ZillowBundle

Homepage

Type:symfony-bundle

pkg:composer/kmj/zillowbundle

Statistics

Installs: 88

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v1.0.1 2017-03-27 03:23 UTC

This package is auto-updated.

Last update: 2026-02-12 22:21:49 UTC


README

  1. Installation

KMJZillowBundle can conveniently be installed via Composer. Just run the following command from your project directory

composer require "kmj/zillowbundle": 1.0.*

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new KMJ\ZillowBundle\KMJZillowBundle(),
    // ...
);
  1. Configuration

This bundle comes with a few configuration options.

kmj_zillow:
    key: %zillow_key% #The Zillow API key
  1. Features

This bundle's goal is to provide quick integration to the Zillow API. For documentation please use the Zillow API documentation

An example request would look like:

$request = new SearchResultsRequest();

$request->setAddress("123 Elm St")
            ->setCityStateZip("Palo Alto, CA 94305")
            ->setRentZestimate(true);

return $request->getResponse();