cyberduck / laravel-zoopla
Laravel wrapper for the Zoopla API
Installs: 303
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 2
Open Issues: 0
pkg:composer/cyberduck/laravel-zoopla
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: ~5.0
- illuminate/support: ~5.0
This package is not auto-updated.
Last update: 2025-10-25 22:50:27 UTC
README
Laravel 5 package for the Zoopla API
Install
Simply add the following line to your composer.json and run install/update:
"cyberduck/laravel-zoopla": "dev-master"
Configuration
Publish the package config files to configure your api keys:
php artisan vendor:publish
You will also need to add the service provider and optionally the facade alias to your app/config/app.php:
'providers' => array( 'Cyberduck\LaravelZoopla\LaravelZooplaServiceProvider' ) 'aliases' => array( 'Zoopla' => 'Cyberduck\LaravelZoopla\Facades\Zoopla' ),
Usage
Please see the Zoopla API for full documentation.
You can either use the facade or inject the Zoopla class. The package provides a camel case interface to all the existing api methods
Zoopla::PropertyListings(['postcode' => 'WD6 3EP'])