PhpDev.App
podio-community/podio-php

podio-community/podio-php

Stars: 152

Forks: 127

Pull Requests: 104

Issues: 116

Watchers: 52

Last Updated: 2022-09-05 11:12:02

PHP Client for the Podio API.

License: MIT License

Languages: PHP, Makefile

http://podio.com/

Podio PHP client library

This is the non-official PHP Client for interacting with the Podio API maintained by the Podio community and the continuation of the former official Podio PHP Client. Most parts of the Podio API are covered in this client. See podio-community.github.io/podio-php for documentation.

Build Status Coverage Status Packagist Version

Usage

Install via composer:

composer require podio-community/podio-php

Use in your PHP files:

require __DIR__ . '/vendor/autoload.php';

Podio::setup($client_id, $client_secret);
Podio::authenticate_with_app($app_id, $app_token);
$items = PodioItem::filter($app_id);

print "My app has " . count($items) . " items";

Contribute

To contribute, please read: the contribution guide.