Download the PHP package piggly/php-api-client without Composer

On this page you can find all versions of the php package piggly/php-api-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 php-api-client

Api Client Starter-Kit

Latest Version on Packagist

This open-source library is provided for cases where you need to do APIs calls with large flexibility that officials SDK may not provide out-of-the-box. When using this Starter-Kit, you will be able to make better cURL requests with a smart managing of requests and responses.

Installation

Composer

  1. At you console, in your project folder, type composer require piggly/php-api-client;
  2. Don't forget to add Composer's autoload file at your code base require_once('vendor/autoload.php);.

Manual install

  1. Download or clone with repository with git clone https://github.com/piggly-dev/php-api-client.git;
  2. After, goes to cd /path/to/piggly/php-api-client;
  3. Install all Composer's dependencies with composer install;
  4. Add project's autoload file at your code base require_once('/path/to/piggly/php-api-client/vendor/autoload.php);.

Dependencies

The library has the following external dependencies:

How to?

Configuration

This library provides, first, a Configuration object. You must create it before send any request. You may create many Configuration objects to provide different environments or you could use .env files to manages it.

See below all configurations:

Configuration Method Description
Api Keys apiKey() and getApiKey() Add a new api key. You may have many.
Access Token accessToken() and getAccessToken() Add an access token.
Client Username username() and getUsername() HTTP Client Username to Basic Authentication.
Client Password password() and getPassword() HTTP Client Secret to Basic Authentication.
HTTP Headers headers() and cloneHeaders() Manage the defaults HTTP Headers.
Host host() and getHost() Host URL to send Requests, without paths.
UserAgent userAgent() and getUserAgent() UserAgent which is making Requestes.
Timeout timeout() and getTimeout() The maximum number of seconds to allow cURL functions to execute.
Connection Timeout connectionTimeout() and getConnectionTimeout() The maximum amount of time in seconds that is allowed to make the connection to the server
Proxy Host proxyHost() and getProxyHost() Host for proxying.
Proxy Port proxyPort() and getProxyPort() Port for proxying.
Proxy Type proxyType() and getProxyType() cURL proxy type, e.g. CURLPROXY_HTTP or CURLPROXY_SOCKS5.
Proxy User proxyUser() and getProxyUser() User for proxying.
Proxy Password proxyPassword() and getProxyPassword() Password for proxying.
Custom Configuration custom() and getCustom() Add any custom configuration.
SSL Validation verifySSL() and shouldVerifySSL() If should or not do a SSL verification.
Default Configuration default and getDefault() A static default configuration objects. It will be available to all Configuration instances.

Development configurations:

With debug() method you will be able to enable requests debugging. You also may set a Logger to log messages across code lifetime. The logger() method is expecting a Logger from monolog/monolog package. Only when a Logger is set the log() method will output messages into Logger.

NOTE: Debug messages will only be output to Logger when debug() mode is active.

Requests

After configuration is done, you are ready to use Request object. You may set a Configuration object to Request constructor or it will get the default configuration.

Then, you must start with request's methods: delete(), head(), get(), options(), patch(),post() and put(). After you will be able to manipulate request with methods below:

Method Description
basicAuth() Apply basic authorization header.
authorization() Apply authorization header with an api key.
getHeaders() Manages all request headers.
headers() Applies headers to request headers.
data() Set the post data.
params() Set parameters replaces to URI. At URI, /posts/{id} you may set params(['id', 1]), then it will be replaced /posts/1.
query() Set query string parameters.
responseType() Set the response type as \SplFileObject, string or array.

When your request is done, you need to use call() method. The call() method will:

Headers

To manage headers, there is a HeaderBag object that will have all needed methods to better handle with headers.

Samples

You can see very lightweight samples at /samples folder.

Changelog

See the CHANGELOG file for information about all code changes.

Testing the code

This library uses the PHPUnit. We carry out tests of all the main classes of this application.

You must always run tests with PHP 7.2 and greater.

Contributions

See the CONTRIBUTING file for information before submitting your contribution.

Credits

Support the project

Piggly Studio is an agency located in Rio de Janeiro, Brazil. If you like this library and want to support this job, be free to donate any value to BTC wallet 3DNssbspq7dURaVQH6yBoYwW3PhsNs8dnK ❤.

License

MIT License (MIT). See LICENSE.


All versions of php-api-client with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
monolog/monolog Version ^2.2
ext-curl Version >=7.2
ext-json Version >=7.2
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 piggly/php-api-client contains the following files

Loading the files please wait ....