We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 478fd2e commit 3a97169Copy full SHA for 3a97169
composer.json
@@ -0,0 +1,22 @@
1
+{
2
+ "name": "raph6/httprequest",
3
+ "description": "Make http request using curl",
4
+ "type": "library",
5
+ "authors": [
6
+ {
7
+ "name": "raph",
8
+ "email": "[email protected]"
9
+ }
10
+ ],
11
+ "require": {
12
+ "php": "^7.2"
13
+ },
14
+ "require-dev": {
15
+ "phpunit/phpunit": "^8.5"
16
17
+ "autoload": {
18
+ "classmap": [
19
+ "src/"
20
+ ]
21
22
+}
HttpRequest.php src/HttpRequest.phpHttpRequest.php renamed to src/HttpRequest.php
@@ -1,13 +1,13 @@
<?php
/**
- * @author Raphael BLEUZET <rbleuzet@gmail.com>
+ * @author Raphaël BLEUZET <https://github.com/raph6>
*/
-namespace HttpRequest;
+namespace raph6\HttpRequest;
* Simple HttpRequest
* Using curl
*
- * @version 0.1
+ * @version 0.9
class HttpRequest
{
0 commit comments