2017 © Pedro Peláez
 

library php-versioneye-client

PHP Version EYE Client

image

snide/php-versioneye-client

PHP Version EYE Client

  • Monday, May 12, 2014
  • by pdenis
  • Repository
  • 0 Watchers
  • 1 Stars
  • 63 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

versioneye-client

A PHP Client for Version Eye API, (*1)

Build Status Scrutinizer Quality Score Code Coverage, (*2)

Installation

Installation by Composer

If you use composer, add versioneye-client library as a dependency to the composer.json of your application, (*3)

    "require": {
        ...
        "snide/php-versioneye-client": "dev-master"
        ...
    },

Usage

Projects

<?php

    // Fetch projects

    $client->fetchProjects();

    // Project detail

    $client->fetchProject(new \Snide\VersionEye\Model\Project("composer_pdenis_travinizer_1");

    // Create a project

    $client->createProject('../composer.json');

    // Update a project

    $client->updateProject(new \Snide\VersionEye\Model\Project('composer_snide_php_versioneye_client_1'), '../composer.json');

Users

<?php

    // Fetch me

    $client->fetchMe();

    // Project User by username

    $client->fetchUser(new \Snide\VersionEye\Model\User('pdenis'));

Ping Service

<?php

    // Ping service

    $client->pingService();

The Versions

12/05 2014

dev-master

9999999-dev http://github.com/pdenis/versioneye-client

PHP Version EYE Client

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pascal DENIS

library versioneye snide