Skip to content

Commit 3d341f4

Browse files
authored
sync rename changes (#6)
1 parent 83e506e commit 3d341f4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Documentation of php-kafka
1+
# Documentation of php-simple-kafka-client
22
This is the documentation repository of [php-kafka/php-simple-kafka-client](https://github.com/php-kafka/php-simple-kafka-client).
3-
See the live documentation at [https://php-kafka.github.io/php-simple-kafka-client.github.io/](https://php-kafka.github.io/php-simple-kafka-client.github.io/).
3+
See the live documentation at [https://php-kafka.github.io/php-simple-kafka-client.github.io](https://php-kafka.github.io/php-simple-kafka-client.github.io/).
44
The documentation is built with [Hugo](https://gohugo.io/documentation/).
55

66

Diff for: config.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
baseURL = "https://php-kafka.github.io/"
22
languageCode = "en-us"
3-
title = "Documentation of php-kafka"
3+
title = "Documentation of php-simple-kafka-client"
44
theme = "hugo-geekdoc"
55

66
# Geekdoc required configuration
@@ -11,6 +11,6 @@ disablePathToLower = true
1111
[params]
1212
geekdocLogo = "images/logo.jpg"
1313
geekdocBreadcrumb = false
14-
geekdocRepo = "https://github.com/php-kafka/php-kafka.github.io"
14+
geekdocRepo = "https://github.com/php-kafka/php-simple-kafka-client.github.io"
1515
geekdocEditPath = "tree/main/content"
1616
geekdocSearch = false

Diff for: content/about/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ draft: false
77
[![Supported librdkafka versions: >= 1.4.0](https://img.shields.io/badge/librdkafka-%3E%3D%201.4.0-blue.svg)](https://github.com/edenhill/librdkafka/releases)
88
[![Supported Kafka versions: >= 0.9](https://img.shields.io/badge/kafka-%3E%3D%200.9-blue.svg)](https://github.com/edenhill/librdkafka/blob/master/INTRODUCTION.md#broker-version-compatibility)
99
![Supported PHP versions: 7.x .. 8.x](https://img.shields.io/badge/php-7.x%20..%208.x-blue.svg)
10-
[![License: BSD-3](https://img.shields.io/badge/License-BSD--3-green.svg)](https://github.com/php-kafka/php-kafka/blob/main/LICENSE)
10+
[![License: BSD-3](https://img.shields.io/badge/License-BSD--3-green.svg)](https://github.com/php-kafka/php-simple-kafka-client/blob/main/LICENSE)
1111

1212
This extension provides ways to interact with Apache Kafka.
13-
You can find some examples for producer and consumer [here](https://github.com/php-kafka/php-kafka-examples/tree/main/src/ext-php-kafka)
13+
You can find some examples for producer and consumer [here](https://github.com/php-kafka/php-kafka-examples/tree/main/src/ext-php-simple-kafka-client)
1414
This extension uses [librdkafka](https://github.com/edenhill/librdkafka) for binding and was inspired by [php-rdkafka](https://github.com/arnaud-lb/php-rdkafka).

Diff for: content/installation/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Not yet support (WIP)
88

99
### Manual installation
1010
```bash
11-
git clone https://github.com/php-kafka/php-kafka.git
12-
cd php-kafka
11+
git clone https://github.com/php-kafka/php-simple-kafka-client.git
12+
cd php-simple-kafka-client
1313
phpize && ./configure && make -j5 all && make install
1414
```
1515
In your `php/conf.d` folder add a `kafka.ini` with the following:

Diff for: data/menu/more.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
more:
33
- name: "View Source"
4-
ref: "https://github.com/php-kafka/php-kafka.github.io"
4+
ref: "https://github.com/php-kafka/php-simple-kafka-client.github.io"
55
external: true
66
icon: "github"

0 commit comments

Comments
 (0)