mcarpenter / vinephp
A Vine API for PHP
dev-master
2015-05-25 18:32 UTC
This package is not auto-updated.
Last update: 2026-04-26 02:22:45 UTC
README
PHP wrapper for the Vine API
Installation
From composer
php composer.phar require mcarpenter/vinephp
From source
git clone https://github.com/ahsile/vinephp.git
Examples
use mcarpenter/vinephp $vine = new API("username", "password"); $user = $vine->user; $followers = $user->followers(); $timeline = $user->timeline();