Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zapalm/request-proxy
The simple PHP-library to proxy HTTP-requests just having CURL.
https://github.com/zapalm/request-proxy
curl hacktoberfest php-library proxy-client proxy-server requests
Last synced: 18 days ago
JSON representation
The simple PHP-library to proxy HTTP-requests just having CURL.
- Host: GitHub
- URL: https://github.com/zapalm/request-proxy
- Owner: zapalm
- Created: 2018-10-08T11:43:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T02:54:04.000Z (7 months ago)
- Last Synced: 2024-11-01T23:42:17.437Z (2 months ago)
- Topics: curl, hacktoberfest, php-library, proxy-client, proxy-server, requests
- Language: PHP
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# About this project
This is a simple PHP-library to create proxy-service via HTTP-requests just having CURL.
That is, there is no need to install any other software, such as a proxy server (you need just PHP).
Seriously though, this project was created just for fun :)
See `tests` directory for usage examples.## Installation
Add the dependency directly to your `composer.json` file:
```
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zapalm/request-proxy"
}
],
"require": {
"php": ">=5.6",
"zapalm/request-proxy": "dev-master"
},
```## How to help the project grow and get updates
Give the **star** to the project. That's all! :)## Contributing to the code
### Requirements for code contributors
Contributors **must** follow the following rules:
* **Make your Pull Request on the *dev* branch**, NOT the *master* branch.
* Do not update a helper version number.
* Follow [PSR coding standards][1].### Process in details for code contributors
Contributors wishing to edit the project's files should follow the following process:
1. Create your GitHub account, if you do not have one already.
2. Fork the project to your GitHub account.
3. Clone your fork to your local machine.
4. Create a branch in your local clone of the project for your changes.
5. Change the files in your branch. Be sure to follow [the coding standards][1].
6. Push your changed branch to your fork in your GitHub account.
7. Create a pull request for your changes **on the *dev* branch** of the project.
If you need help to make a pull request, read the [GitHub help page about creating pull requests][2].
8. Wait for the maintainer to apply your changes.**Do not hesitate to create a pull request if even it's hard for you to apply the coding standards.**
[1]: https://www.php-fig.org/psr/
[2]: https://help.github.com/articles/about-pull-requests/