mrcl / http-methods
HTTP Methods library
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mrcl/http-methods
Requires
- php: >=7.4
Requires (Dev)
- phpunit/phpunit: ^9.5
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'