Download the PHP package phpmystic/kai without Composer

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

Kai - Fluent PHP HTTP Client

A fluent, exception-less PHP HTTP client library that uses a callback-based approach for handling responses. Built on cURL.

Features

Requirements

Installation

Quick Start

Basic Usage

Creating a Client

Making Requests

GET Request

POST Request

PUT Request

PATCH Request

DELETE Request

Advanced Features

Query Parameters

Custom Headers

Fluent Chaining

Chain multiple operations together:

Response Handlers

Status-Specific Handlers

Handle specific HTTP status codes:

Generic Status Code Handler

Range Handlers

Handle ranges of status codes:

Error Handling

Handle cURL-level errors (connection failures, timeouts, etc.):

Always Handler

Execute a callback regardless of the response status:

Response Object

All callbacks receive a Response object with the following properties and methods:

Properties

Methods

Example Usage

Working with Different Response Types

Real-World Examples

RESTful API Client

GitHub API Integration

Weather API Client

Multi-Endpoint Workflow

Error Handling Pattern

Testing

Using Mocks in Tests

The library supports dependency injection for easy testing:

For more details on testing, see tests/README.md.

Running Tests

Design Philosophy

Why Callbacks Instead of Exceptions?

Traditional HTTP clients throw exceptions for error responses:

Kai uses a callback-based approach:

Benefits:

  1. More Explicit - Each status code is handled explicitly
  2. No Try-Catch Blocks - Cleaner code flow
  3. Fluent Interface - Chain handlers naturally
  4. Selective Handling - Only handle the statuses you care about
  5. Better for Multiple Outcomes - HTTP responses aren't really "exceptions"

API Reference

Client Methods

Constructor

Request Configuration

HTTP Methods

Response Handlers

Status Code Aliases

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This library is licensed under the MIT License. See the LICENSE file for details.

Author

Elmehdi el faithi - [email protected]

Links


All versions of kai with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-curl Version *
ext-json Version *
guzzlehttp/psr7 Version ^2.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 phpmystic/kai contains the following files

Loading the files please wait ...