mrcl / http-methods
HTTP 方法库
1.0.1
2021-05-17 14:26 UTC
Requires
- php: >=7.4
Requires (Dev)
- phpunit/phpunit: ^9.5
README
PHP 库,包含在 IANA 注册处 中列出的所有 HTTP 方法。
安装
composer require mrcl/http-methods
用法
HttpMethod 接口包含所有 HTTP 方法的常量
use Mrcl\Utils\InternetStandards\HttpMethod; HttpMethod::GET // 'GET' HttpMethod::POST // 'POST'