Skip to content

Commit 6042c57

Browse files
committed
org update
1 parent e162835 commit 6042c57

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
> 🔔 Subscribe to the [newsletter](https://chv.to/chevere-newsletter) to don't miss any update regarding Chevere.
44
5-
[![Build](https://img.shields.io/github/actions/workflow/status/chevere/xr/test.yml?branch=1.0&style=flat-square)](https://github.com/chevere/xr/actions)
6-
![Code size](https://img.shields.io/github/languages/code-size/chevere/xr?style=flat-square)
7-
[![Apache-2.0](https://img.shields.io/github/license/chevere/xr?style=flat-square)](LICENSE)
5+
[![Build](https://img.shields.io/github/actions/workflow/status/xrdebug/php/test.yml?branch=1.0&style=flat-square)](https://github.com/xrdebug/php/actions)
6+
![Code size](https://img.shields.io/github/languages/code-size/xrdebug/php?style=flat-square)
7+
[![Apache-2.0](https://img.shields.io/github/license/xrdebug/php?style=flat-square)](LICENSE)
88
[![PHPStan](https://img.shields.io/badge/PHPStan-level%209-blueviolet?style=flat-square)](https://phpstan.org/)
9-
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat-square&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fchevere%2Fxr%2F1.0)](https://dashboard.stryker-mutator.io/reports/github.com/chevere/xr/1.0)
9+
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat-square&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fchevere%2Fxr%2F1.0)](https://dashboard.stryker-mutator.io/reports/github.com/xrdebug/php/1.0)
1010

1111
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=alert_status)](https://sonarcloud.io/dashboard?id=chevere_xr)
1212
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=chevere_xr)
1313
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=chevere_xr)
1414
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=security_rating)](https://sonarcloud.io/dashboard?id=chevere_xr)
1515
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=coverage)](https://sonarcloud.io/dashboard?id=chevere_xr)
1616
[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=chevere_xr&metric=sqale_index)](https://sonarcloud.io/dashboard?id=chevere_xr)
17-
[![CodeFactor](https://www.codefactor.io/repository/github/chevere/xr/badge)](https://www.codefactor.io/repository/github/chevere/xr)
18-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/89c64d17be684818b21d44c658c735d0)](https://app.codacy.com/gh/chevere/xr/dashboard)
17+
[![CodeFactor](https://www.codefactor.io/repository/github/xrdebug/php/badge)](https://www.codefactor.io/repository/github/xrdebug/php)
18+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/89c64d17be684818b21d44c658c735d0)](https://app.codacy.com/gh/xrdebug/php/dashboard)
1919

2020
PHP client library for [xrDebug](https://docs.xrdebug.com/).
2121

@@ -24,7 +24,7 @@ PHP client library for [xrDebug](https://docs.xrdebug.com/).
2424
* Install using [Composer](https://getcomposer.org/)
2525

2626
```sh
27-
composer require --dev chevere/xr
27+
composer require --dev xrdebug/php
2828
```
2929

3030
## Helpers

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "chevere/xr",
2+
"name": "xrdebug/php",
33
"description": "Lightweight debug utility",
4-
"homepage": "https://xr-debug.chevere.org",
4+
"homepage": "https://github.com/xrdebug/php",
55
"keywords": [
66
"chevere",
77
"dump",

src/Traits/ClientTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ private function getCurlHandle(MethodInterface $method, string $url, array $data
155155
CURLOPT_SSL_VERIFYPEER => true,
156156
CURLOPT_TIMEOUT => 2,
157157
CURLOPT_URL => $this->getUrl($url),
158-
CURLOPT_USERAGENT => 'chevere/xr 1.0',
158+
CURLOPT_USERAGENT => 'xrdebug/php 1.0',
159159
];
160160
$this->handleSignature($data);
161161
$this->curl->setOptArray($this->options);

tests/ClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function testPost(): void
5656
CURLOPT_SSL_VERIFYPEER => true,
5757
CURLOPT_TIMEOUT => 2,
5858
CURLOPT_URL => $client->getUrl('messages'),
59-
CURLOPT_USERAGENT => 'chevere/xr 1.0',
59+
CURLOPT_USERAGENT => 'xrdebug/php 1.0',
6060
];
6161
$this->assertSame($options, $client->options());
6262
$curl = $this->createMock(Curl::class);

0 commit comments

Comments
 (0)