Skip to content

Commit 3a97169

Browse files
committed
composer
1 parent 478fd2e commit 3a97169

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 renamed to src/HttpRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22
/**
3-
* @author Raphael BLEUZET <rbleuzet@gmail.com>
3+
* @author Raphaël BLEUZET <https://github.com/raph6>
44
*/
5-
namespace HttpRequest;
5+
namespace raph6\HttpRequest;
66
/**
77
* Simple HttpRequest
88
* Using curl
99
*
10-
* @version 0.1
10+
* @version 0.9
1111
*/
1212
class HttpRequest
1313
{

0 commit comments

Comments
 (0)