From 25b7d2aab61ae6421398d3abae5da6ffe590333d Mon Sep 17 00:00:00 2001 From: s1n Date: Sat, 28 Mar 2020 10:36:41 -0700 Subject: 3/28/2020, 10:36 --- .../vendor/jakeasmith/http_build_url/readme.md | 20 +++ .../http_build_url/src/http_build_url.php | 174 +++++++++++++++++++++ 2 files changed, 194 insertions(+) create mode 100644 includes/vendor/jakeasmith/http_build_url/readme.md create mode 100644 includes/vendor/jakeasmith/http_build_url/src/http_build_url.php (limited to 'includes/vendor/jakeasmith') diff --git a/includes/vendor/jakeasmith/http_build_url/readme.md b/includes/vendor/jakeasmith/http_build_url/readme.md new file mode 100644 index 0000000..cdf10f4 --- /dev/null +++ b/includes/vendor/jakeasmith/http_build_url/readme.md @@ -0,0 +1,20 @@ +# http_build_url() for PHP + +[![Build Status](https://travis-ci.org/jakeasmith/http_build_url.png)](https://travis-ci.org/jakeasmith/http_build_url) +[![Code Climate](https://codeclimate.com/github/jakeasmith/http_build_url/badges/gpa.svg)](https://codeclimate.com/github/jakeasmith/http_build_url) +[![Latest Stable Version](https://poser.pugx.org/jakeasmith/http_build_url/v/stable.png)](https://packagist.org/packages/jakeasmith/http_build_url) +[![Total Downloads](https://poser.pugx.org/jakeasmith/http_build_url/downloads.png)](https://packagist.org/packages/jakeasmith/http_build_url) + +This simple library provides functionality for [`http_build_url()`](http://us2.php.net/manual/en/function.http-build-url.php) to environments without pecl_http. It aims to mimic the functionality of the pecl function in every way and ships with a full suite of tests that have been run against both the original function and the one in this package. + +## Installation + +The easiest way to install this library is to use [Composer](https://getcomposer.org/) from the command line. + +``` +$ composer require jakeasmith/http_build_url ^1 +``` + +## License + +This project is licensed under the MIT License - see the LICENSE file for details. diff --git a/includes/vendor/jakeasmith/http_build_url/src/http_build_url.php b/includes/vendor/jakeasmith/http_build_url/src/http_build_url.php new file mode 100644 index 0000000..0dfdbba --- /dev/null +++ b/includes/vendor/jakeasmith/http_build_url/src/http_build_url.php @@ -0,0 +1,174 @@ +