indigophp/http-adapter-auth

This package is abandoned and no longer maintained. No replacement package was suggested.

Easily authenticate requests in Ivory Http Adapter

dev-master / 0.1.x-dev 2015-11-06 18:26 UTC

This package is not auto-updated.

Last update: 2021-11-24 09:11:59 UTC


README

DEPRECATED in favor of https://github.com/php-http/authentication

Ivory Http Adapter Authentication plugin

Latest Version Software License Build Status Code Coverage Quality Score HHVM Status Total Downloads

Easily authenticate requests in Ivory Http Adapter.

Install

Via Composer

$ composer require indigophp/http-adapter-auth

Usage

  1. Create your custom authentication implementing Indigo\HttpAdapter\Authentication interface (BasicAuth is provided by the package)
  2. Wrap your HTTP Adapter of choice into an Indigo\HttpAdapter\AuthenticatingHttpAdapter
  3. Enjoy!
use Indigo\HttpAdapter\AuthenticatingHttpAdapter;
use Indigo\HttpAdapter\Authentication\BasicAuth;
use Ivory\HttpAdapter\HttpAdapterFactory;

$httpAdapter = HttpAdapterFactory::guess();
$authentication = new BasicAuth('john.doe', 'secret');

$httpAdapter = new AuthenticatingHttpAdapter($httpAdapter, $authentication);

Testing

$ phpspec run

Looking forward to PHP 7

PHP 7 will introduce scalar type hints, thus for the long run it makes no sense to write checks for scalar types. Until PHP 7 is not released (and became the most commonly used version) beberlei/assert is used for type checking. Any further checks should be done in the code.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.