Download the PHP package seunmatt/fstackapi_php without Composer

On this page you can find all versions of the php package seunmatt/fstackapi_php. 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 fstackapi_php

fstackapi_php

Build Status

This is a convenient PHP wrapper for Formstack's REST API v2. Compatible with Laravel.

Remember to star and watch for changes

Installation

composer require seunmatt/fstackapi_php

Laravel

After installing the dependency. Add the service provider in config/app.php

Run php artisan vendor:publish to publish the config file. The config file is formstack.php and will be in the laravel config folder. Set your access_token in the config file and proceed.

Usage

The package is built around FormStack REST API (v2), thus it is organized in a very simple and flexible way to use. It has different classes that model the elements of Formstack API.

API Response

Every JSON API Response is decoded into an assoc array and returned to the caller.

Configuration

In the config file, provide your value for access_token.
The base_url by default is set to that of API v2.

FormStack Object Instantiation

Create an instance of the Formstack object you want to work with and then you can call the methods on the instance:

If you don't want to use the config file, You can pass the $token and $baseUrl parameter to the Formstack objects during instantiation:

Example

Submitting a form is straightforward but can be tricky. First get the id for all the fields of the form you want to submit to. You can do this with the FSField object (as shown above) and store the response somewhere you can reference them later.

Then you can proceed to build your data arrray and submit the form as demonstrated below.

Exceptions

You can wrap the method calls in a try...catch block to catch:

All exceptions to API calls are caught by GuzzleHttp\Exception\RequestException

Tests

PHPUnit is used for testing and the test files are located in tests dir. If you fork/clone the repo and will like to run the tests.

First, ensure you have set up the config as specified above, then run the following command from the root dir of the package to run the tests.

It will be a good idea to have an access_token to an account that has not reach its limit for number of forms creation.

API Components Not Covered

Reference

Formstack API v2 docs: https://developers.formstack.com/docs/api-overview

Contributors

Seun Matt: on twitter @SeunMatt2

Contributing

READ ABOUT CONTRIBUTING HERE

LICENSE

MIT


All versions of fstackapi_php with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.4
guzzlehttp/guzzle Version ^6.2
illuminate/support Version ^5.4
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 seunmatt/fstackapi_php contains the following files

Loading the files please wait ....