Download the PHP package yireo/producteev-client without Composer

On this page you can find all versions of the php package yireo/producteev-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package producteev-client

Producteev Client

PHP client for the Producteev API.

This PHP client makes use of the Producteev API, authenticating using OAuth2 and depends on Guzzle.

Status

Beta (aka it might be ready for production). This API client is used by ourselves to integrate various other systems with Producteev, for instance to create complete projects (including tasks and subtasks) through batch-scripts.

This package is also listed on Packagist: https://packagist.org/packages/yireo/producteev-client

Installation

This client is installed via composer:

composer config repositories.yireo-producteev vcs [email protected]:yireo/producteev-client.git
composer require yireo/producteev-client:dev-master

Usage

First of all, see the documentation of Producteev on the usage of their API: https://www.producteev.com/api/doc/#Introduction

Read their instructions on how to create a new app. Write down the client ID and client secret of this app. In the example below these are the $clientId and $clientSecret variables.

Now, setup a webpage, add the code below, and access it. In the example, the URL will be http://example.com:

Cookies

The access token is in this code sample stored in a cookie in the browser. Alternative storage can be used if you prefer.

API calls

The following calls have been made accessible so far:

Show all available networks:

Get current user:

Search for specific user:

Get the default project of the current user:

Create a project

Create a task for an existing project, set the deadline to tomorrow, add some subtasks, assign the task to $exampleUser and remove the current user from the task:

List all projects:

Search for projects with the word "office" in their title:


All versions of producteev-client with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
guzzlehttp/guzzle Version ~6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package yireo/producteev-client contains the following files

Loading the files please wait ....