Download the PHP package adamlc/wufoo-php-api-wrapper without Composer

On this page you can find all versions of the php package adamlc/wufoo-php-api-wrapper. 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 wufoo-php-api-wrapper

Wufoo PHP API Wrapper

Latest Stable Version Total Downloads Latest Unstable Version License

This is a fork of the original Wufoo PHP library. This fork has tried to make the library more modern by using proper name spaces and exceptions. This class follows PSR2 and PSR4.

Chances are I have probably broken some stuff. I haven't tested everything and there is still work to do, but its a start....

The Wufoo PHP API plugin is meant to help make working with the Wufoo API easier for PHP developers. It doesn't do anything that working directly with the API can't do, it just provides an abstraction layer making getting the information you need easier.

Composer

To install Wufoo PHP API Wrapper as a Composer package add this to your composer.json:

Run composer update

Basics

The API Wrapper is a collection of functions each for using a specific API. For example, this is how you would get data on your account's users:

Some APIs need more information to be able to return the information they are supposed to. For example, the Entries API needs to know what form to return data from. Each will be documented below.

Full API Documentation

Available here: http://wufoo.com/docs/api/v3/

Each API returns its own set of specific information which is all documented on Wufoo.com for reference.

Users

Information about all users:

Full documentation: http://wufoo.com/docs/api/v3/users/

Forms

Information about all forms:

Information about a specific form:

Full documentation: http://wufoo.com/docs/api/v3/forms/

Entries

Entries from a form:

Entries from a report:

Entries POST to a form:

Full documentation: http://wufoo.com/docs/api/v3/forms/post/

Full documentation: http://wufoo.com/docs/api/v3/entries/

Fields

Fields of a form:

Fields of a report:

Bear in mind that fields may have SubFields, as is the case when using Wufoo-provided fields like Name, which has First and Last as subfields. Testing for SubFields and looping through those within the main loop while processing the data is a good idea.

Full documentation: http://wufoo.com/docs/api/v3/fields/

Comments

Comments are entered in the Wufoo.com Entry Manager.

Get comments from a form:

Full documentation: http://wufoo.com/docs/api/v3/comments/

Reports

Information about all reports:

Information about single form:

Full documentation: http://wufoo.com/docs/api/v3/reports/

Web Hook

Add a Web Hook to a form:

Delete a Web Hook from a form:

Full documentation: http://wufoo.com/docs/api/v3/webhooks/


All versions of wufoo-php-api-wrapper with dependencies

PHP Build Version
Package Version
No informations.
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 adamlc/wufoo-php-api-wrapper contains the following files

Loading the files please wait ....