mrcl/http-methods

HTTP Methods library

1.0.1 2021-05-17 14:26 UTC

This package is auto-updated.

Last update: 2024-09-17 22:32:27 UTC


README

PHP library containing all HTTP methods listed in the IANA registry.

Installation

composer require mrcl/http-methods

Usage

The HttpMethod interface contains all HTTP methods as constants

use Mrcl\Utils\InternetStandards\HttpMethod;

HttpMethod::GET  // 'GET'       
HttpMethod::POST // 'POST'