Skip to content

Commit 9b6e0b4

Browse files
author
Martin Brecht-Precht
committed
Switched the root namespace and vendor prefix
1 parent c65b484 commit 9b6e0b4

File tree

7 files changed

+71
-71
lines changed

7 files changed

+71
-71
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Martin Brecht-Precht, Markenwerk GmbH
3+
Copyright (c) 2016 Martin Brecht-Precht, Chroma Experience GmbH
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# PHP JSON HTTP Client
22

3-
[![Build Status](https://travis-ci.org/markenwerk/php-json-http-client.svg?branch=master)](https://travis-ci.org/markenwerk/php-json-http-client)
3+
[![Build Status](https://travis-ci.org/chroma-x/php-json-http-client.svg?branch=master)](https://travis-ci.org/chroma-x/php-json-http-client)
44
[![SensioLabs Insight](https://img.shields.io/sensiolabs/i/6b8db506-121a-4875-8b1d-560b505e0444.svg)](https://insight.sensiolabs.com/projects/6b8db506-121a-4875-8b1d-560b505e0444)
5-
[![Code Climate](https://codeclimate.com/github/markenwerk/php-json-http-client/badges/gpa.svg)](https://codeclimate.com/github/markenwerk/php-json-http-client)
6-
[![Latest Stable Version](https://poser.pugx.org/markenwerk/json-http-client/v/stable)](https://packagist.org/packages/markenwerk/json-http-client)
7-
[![Total Downloads](https://poser.pugx.org/markenwerk/json-http-client/downloads)](https://packagist.org/packages/markenwerk/json-http-client)
8-
[![License](https://poser.pugx.org/markenwerk/json-http-client/license)](https://packagist.org/packages/markenwerk/json-http-client)
5+
[![Code Climate](https://codeclimate.com/github/chroma-x/php-json-http-client/badges/gpa.svg)](https://codeclimate.com/github/chroma-x/php-json-http-client)
6+
[![Latest Stable Version](https://poser.pugx.org/chroma-x/json-http-client/v/stable)](https://packagist.org/packages/chroma-x/json-http-client)
7+
[![Total Downloads](https://poser.pugx.org/chroma-x/json-http-client/downloads)](https://packagist.org/packages/chroma-x/json-http-client)
8+
[![License](https://poser.pugx.org/chroma-x/json-http-client/license)](https://packagist.org/packages/chroma-x/json-http-client)
99

10-
A JSON HTTP client library. This project also is the reference implementation for extending the [PHP Basic HTTP Client](https://github.com/markenwerk/php-basic-http-client).
10+
A JSON HTTP client library. This project also is the reference implementation for extending the [PHP Basic HTTP Client](https://github.com/chroma-x/php-basic-http-client).
1111

1212
## Installation
1313

1414
```{json}
1515
{
1616
"require": {
17-
"markenwerk/json-http-client": "~3.0"
17+
"chroma-x/json-http-client": "~3.0"
1818
}
1919
}
2020
```
@@ -32,9 +32,9 @@ require_once('path/to/vendor/autoload.php');
3232
#### Preparing the HTTP client
3333

3434
```{php}
35-
use Markenwerk\JsonHttpClient;
36-
use Markenwerk\BasicHttpClient\Request\Authentication;
37-
use Markenwerk\BasicHttpClient\Request\Message;
35+
use ChromaX\JsonHttpClient;
36+
use ChromaX\BasicHttpClient\Request\Authentication;
37+
use ChromaX\BasicHttpClient\Request\Message;
3838
3939
// Instantiating a basic HTTP client with the endpoints URL
4040
// If the endpoint uses the `HTTPS` schema a `HttpsTransport` instance will be used automatically.
@@ -112,7 +112,7 @@ The following example shows the usage with a more detailed configuration.
112112
#### Configuring a HTTP Transport instance
113113

114114
```{php}
115-
use Markenwerk\BasicHttpClient\Request\Transport\HttpTransport;
115+
use ChromaX\BasicHttpClient\Request\Transport\HttpTransport;
116116
117117
// Configuring a Transport instance
118118
$transport = new HttpTransport();
@@ -128,7 +128,7 @@ $transport
128128
#### Configuring a HTTPS Transport instance
129129

130130
```{php}
131-
use Markenwerk\BasicHttpClient\Request\Transport\HttpsTransport;
131+
use ChromaX\BasicHttpClient\Request\Transport\HttpsTransport;
132132
133133
// Configuring a Transport instance
134134
$transport = new HttpsTransport();
@@ -145,10 +145,10 @@ $transport
145145
#### Configuring a Message instance with Body
146146

147147
```{php}
148-
use Markenwerk\BasicHttpClient\Request\Message\Cookie\Cookie;
149-
use Markenwerk\BasicHttpClient\Request\Message\Header\Header;
150-
use Markenwerk\BasicHttpClient\Request\Message\Message;
151-
use Markenwerk\JsonHttpClient\Request\Message\Body\JsonBody;
148+
use ChromaX\BasicHttpClient\Request\Message\Cookie\Cookie;
149+
use ChromaX\BasicHttpClient\Request\Message\Header\Header;
150+
use ChromaX\BasicHttpClient\Request\Message\Message;
151+
use ChromaX\JsonHttpClient\Request\Message\Body\JsonBody;
152152
153153
// Configuring a message Body instance
154154
$messageBody = new JsonBody(array(
@@ -191,12 +191,12 @@ $message->addAdditionalHeader(new Header('Custom-Header', array('AnotherCustomHe
191191

192192
#### Configuring an endpoints URL, build the Request instance and perform the HTTP request
193193

194-
For more information about the usage of the URL object please take a look at the [PHP URL Util](https://github.com/markenwerk/php-url-util) project.
194+
For more information about the usage of the URL object please take a look at the [PHP URL Util](https://github.com/chroma-x/php-url-util) project.
195195

196196
```{php}
197-
use Markenwerk\BasicHttpClient\Request\Authentication\BasicAuthentication;
198-
use Markenwerk\JsonHttpClient\Request\JsonRequest;
199-
use Markenwerk\UrlUtil\Url;
197+
use ChromaX\BasicHttpClient\Request\Authentication\BasicAuthentication;
198+
use ChromaX\JsonHttpClient\Request\JsonRequest;
199+
use ChromaX\UrlUtil\Url;
200200
201201
// Setting up the endpoints URL
202202
$url = new Url('https://john:[email protected]:443/path/to/resource?arg1=123#fragment');
@@ -238,8 +238,8 @@ You can add one or more Authentication instances to every Request instance. At t
238238
Required credentials are a *username* and a *password* that get provided to the class constructor as arguments.
239239

240240
```{php}
241-
use Markenwerk\BasicHttpClient\Request\Authentication\BasicAuthentication;
242-
use Markenwerk\JsonHttpClient\Request\JsonRequest;
241+
use ChromaX\BasicHttpClient\Request\Authentication\BasicAuthentication;
242+
use ChromaX\JsonHttpClient\Request\JsonRequest;
243243
244244
// Configuring the authentication
245245
$basicAuthentication = new BasicAuthentication('username', 'password');
@@ -254,8 +254,8 @@ $response = $request->addAuthentication($basicAuthentication);
254254
Required credentials are a *Certificate Authority Certificate*, a *Client Certificate* and the password that is used to decrypt the Client Certificate that get provided to the class constructor as arguments.
255255

256256
```{php}
257-
use Markenwerk\BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
258-
use Markenwerk\JsonHttpClient\Request\JsonRequest;
257+
use ChromaX\BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
258+
use ChromaX\JsonHttpClient\Request\JsonRequest;
259259
260260
// Configuring the authentication
261261
$clientCertificateAuthentication = new ClientCertificateAuthentication(
@@ -278,7 +278,7 @@ $response = $request->addAuthentication($clientCertificateAuthentication);
278278
If using the `JsonHttpClient` the response object is returned by the termination methods listed above. If directly using the JsonRequest instance, you can get the JsonResponse object via a getter.
279279

280280
```{php}
281-
// Getting the response Markenwerk\BasicHttpClient\Response\JsonResponse object
281+
// Getting the response ChromaX\BasicHttpClient\Response\JsonResponse object
282282
$response = $request->getResponse();
283283
284284
// Reading the HTTP status code as integer; will return `200`
@@ -287,7 +287,7 @@ echo print_r($response->getStatusCode(), true) . PHP_EOL;
287287
// Reading the HTTP status text as string; will return `HTTP/1.1 200 OK`
288288
echo print_r($response->getStatusText(), true) . PHP_EOL;
289289
290-
// Reading the HTTP response headers as array of Markenwerk\BasicHttpClient\Response\Header\Header objects
290+
// Reading the HTTP response headers as array of ChromaX\BasicHttpClient\Response\Header\Header objects
291291
echo print_r($response->getHeaders(), true) . PHP_EOL;
292292
293293
// Reading the HTTP response body as associative array
@@ -310,7 +310,7 @@ echo print_r($request->getEffectiveStatus(), true) . PHP_EOL;
310310
// Getting the effective raw request headers as string
311311
echo print_r($request->getEffectiveRawHeader(), true) . PHP_EOL;
312312
313-
// Getting the effective request headers as array of `Markenwerk\BasicHttpClient\Request\Message\Header\Header` objects
313+
// Getting the effective request headers as array of `ChromaX\BasicHttpClient\Request\Message\Header\Header` objects
314314
echo print_r($request->getEffectiveHeaders(), true) . PHP_EOL.PHP_EOL;
315315
```
316316

@@ -319,7 +319,7 @@ echo print_r($request->getEffectiveHeaders(), true) . PHP_EOL.PHP_EOL;
319319
## Getting some transactional statistics
320320

321321
```{php}
322-
// Getting the statistics Markenwerk\BasicHttpClient\Response\Statistics\Statistics object
322+
// Getting the statistics ChromaX\BasicHttpClient\Response\Statistics\Statistics object
323323
$statistics = $request->getResponse()->getStatistics();
324324
325325
// Reading the redirection URL if the server responds with an redirect HTTP header and
@@ -353,26 +353,26 @@ echo print_r($statistics->getTotalTime(), true).PHP_EOL;
353353
## Exception handling
354354

355355
PHP JSON HTTP Client provides different exceptions – also provided by the PHP Common Exceptions project – for proper handling.
356-
You can find more information about [PHP Common Exceptions at Github](https://github.com/markenwerk/php-common-exceptions).
356+
You can find more information about [PHP Common Exceptions at Github](https://github.com/chroma-x/php-common-exceptions).
357357

358358
### Exceptions to be expected
359359

360360
In general you should expect that any setter method could thrown an `\InvalidArgumentException`. The following exceptions could get thrown while using PHP Basic HTTP Client.
361361

362-
- `Markenwerk\CommonException\IoException\FileNotFoundException` on configuring a `ClientCertificateAuthentication`instance
363-
- `Markenwerk\CommonException\IoException\FileReadableException` on configuring a `ClientCertificateAuthentication`instance
364-
- `Markenwerk\BasicHttpClient\Exception\HttpRequestAuthenticationException` on performing a request
365-
- `Markenwerk\BasicHttpClient\Exception\HttpRequestException` on performing a request
366-
- `Markenwerk\CommonException\NetworkException\ConnectionTimeoutException` on performing a request
367-
- `Markenwerk\CommonException\NetworkException\CurlException` on performing a request
368-
- `Markenwerk\BasicHttpClient\Exception\HttpResponseException` if parsing the JSON response body fails
362+
- `ChromaX\CommonException\IoException\FileNotFoundException` on configuring a `ClientCertificateAuthentication`instance
363+
- `ChromaX\CommonException\IoException\FileReadableException` on configuring a `ClientCertificateAuthentication`instance
364+
- `ChromaX\BasicHttpClient\Exception\HttpRequestAuthenticationException` on performing a request
365+
- `ChromaX\BasicHttpClient\Exception\HttpRequestException` on performing a request
366+
- `ChromaX\CommonException\NetworkException\ConnectionTimeoutException` on performing a request
367+
- `ChromaX\CommonException\NetworkException\CurlException` on performing a request
368+
- `ChromaX\BasicHttpClient\Exception\HttpResponseException` if parsing the JSON response body fails
369369

370370
---
371371

372372
## Contribution
373373

374374
Contributing to our projects is always very appreciated.
375-
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-json-http-client/blob/master/CONTRIBUTING.md) document.**
375+
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/chroma-x/php-json-http-client/blob/master/CONTRIBUTING.md) document.**
376376

377377
## License
378378

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "markenwerk/json-http-client",
2+
"name": "chroma-x/json-http-client",
33
"type": "library",
44
"description": "A JSON HTTP client library. This project also is the reference implementation for extending the PHP Basic HTTP Client.",
55
"keywords": [
@@ -10,25 +10,25 @@
1010
"Basic Auth",
1111
"Client Certificate Auth"
1212
],
13-
"homepage": "http://markenwerk.net/",
13+
"homepage": "http://chroma-x.de/",
1414
"license": "MIT",
1515
"authors": [
1616
{
1717
"name": "Martin Brecht-Precht",
18-
"email": "mb@markenwerk.net",
19-
"homepage": "http://markenwerk.net"
18+
"email": "mb@chroma-x.de",
19+
"homepage": "http://chroma-x.de"
2020
}
2121
],
2222
"autoload": {
2323
"psr-4": {
24-
"Markenwerk\\JsonHttpClient\\": "src/"
24+
"ChromaX\\JsonHttpClient\\": "src/"
2525
}
2626
},
2727
"require": {
2828
"php": "^7.1",
2929
"ext-curl": "*",
3030
"ext-json": "*",
3131
"ext-mbstring": "*",
32-
"markenwerk/basic-http-client": "~3.0"
32+
"chroma-x/basic-http-client": "~3.0"
3333
}
3434
}

src/JsonHttpClient.php

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<?php
22

3-
namespace Markenwerk\JsonHttpClient;
3+
namespace ChromaX\JsonHttpClient;
44

5-
use Markenwerk\BasicHttpClient\HttpClientInterface;
6-
use Markenwerk\BasicHttpClient\Request\Message\Header\Header;
7-
use Markenwerk\BasicHttpClient\Request\RequestInterface;
8-
use Markenwerk\BasicHttpClient\Request\Message\Message;
9-
use Markenwerk\BasicHttpClient\Request\Transport\HttpsTransport;
10-
use Markenwerk\BasicHttpClient\Request\Transport\HttpTransport;
11-
use Markenwerk\BasicHttpClient\Response\ResponseInterface;
12-
use Markenwerk\CommonException\NetworkException\Base\NetworkException;
13-
use Markenwerk\CommonException\NetworkException\ConnectionTimeoutException;
14-
use Markenwerk\JsonHttpClient\Request\JsonRequest;
15-
use Markenwerk\JsonHttpClient\Request\Message\Body\JsonBody;
16-
use Markenwerk\UrlUtil\Url;
5+
use ChromaX\BasicHttpClient\HttpClientInterface;
6+
use ChromaX\BasicHttpClient\Request\Message\Header\Header;
7+
use ChromaX\BasicHttpClient\Request\RequestInterface;
8+
use ChromaX\BasicHttpClient\Request\Message\Message;
9+
use ChromaX\BasicHttpClient\Request\Transport\HttpsTransport;
10+
use ChromaX\BasicHttpClient\Request\Transport\HttpTransport;
11+
use ChromaX\BasicHttpClient\Response\ResponseInterface;
12+
use ChromaX\CommonException\NetworkException\Base\NetworkException;
13+
use ChromaX\CommonException\NetworkException\ConnectionTimeoutException;
14+
use ChromaX\JsonHttpClient\Request\JsonRequest;
15+
use ChromaX\JsonHttpClient\Request\Message\Body\JsonBody;
16+
use ChromaX\UrlUtil\Url;
1717

1818
/**
1919
* Class JsonHttpClient
2020
*
21-
* @package Markenwerk\JsonHttpClient
21+
* @package ChromaX\JsonHttpClient
2222
*/
2323
class JsonHttpClient implements HttpClientInterface
2424
{

src/Request/JsonRequest.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

3-
namespace Markenwerk\JsonHttpClient\Request;
3+
namespace ChromaX\JsonHttpClient\Request;
44

5-
use Markenwerk\BasicHttpClient\Request\AbstractRequest;
6-
use Markenwerk\BasicHttpClient\Response\ResponseInterface;
7-
use Markenwerk\JsonHttpClient\Response\JsonResponse;
5+
use ChromaX\BasicHttpClient\Request\AbstractRequest;
6+
use ChromaX\BasicHttpClient\Response\ResponseInterface;
7+
use ChromaX\JsonHttpClient\Response\JsonResponse;
88

99
/**
1010
* Class JsonRequest
1111
*
12-
* @package Markenwerk\JsonHttpClient\Request
12+
* @package ChromaX\JsonHttpClient\Request
1313
*/
1414
class JsonRequest extends AbstractRequest
1515
{

src/Request/Message/Body/JsonBody.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace Markenwerk\JsonHttpClient\Request\Message\Body;
3+
namespace ChromaX\JsonHttpClient\Request\Message\Body;
44

5-
use Markenwerk\BasicHttpClient\Exception\HttpRequestMessageException;
6-
use Markenwerk\BasicHttpClient\Request\Message\Body\BodyInterface;
5+
use ChromaX\BasicHttpClient\Exception\HttpRequestMessageException;
6+
use ChromaX\BasicHttpClient\Request\Message\Body\BodyInterface;
77

88
/**
99
* Class JsonBody
1010
*
11-
* @package Markenwerk\JsonHttpClient\Request\Message\Body
11+
* @package ChromaX\JsonHttpClient\Request\Message\Body
1212
*/
1313
class JsonBody implements BodyInterface
1414
{

src/Response/JsonResponse.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace Markenwerk\JsonHttpClient\Response;
3+
namespace ChromaX\JsonHttpClient\Response;
44

5-
use Markenwerk\BasicHttpClient\Exception\HttpResponseException;
6-
use Markenwerk\BasicHttpClient\Response\AbstractResponse;
5+
use ChromaX\BasicHttpClient\Exception\HttpResponseException;
6+
use ChromaX\BasicHttpClient\Response\AbstractResponse;
77

88
/**
99
* Class JsonResponse
1010
*
11-
* @package Markenwerk\JsonHttpClient\Response
11+
* @package ChromaX\JsonHttpClient\Response
1212
*/
1313
class JsonResponse extends AbstractResponse
1414
{

0 commit comments

Comments
 (0)