Skip to content

Commit 790893a

Browse files
authored
naming cleanup (#31)
1 parent b17b2d9 commit 790893a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Diff for: .github/workflows/test.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: 'Check out repository'
5656
uses: 'actions/checkout@v2'
5757
with:
58-
path: 'php-kafka'
58+
path: 'php-simple-kafka-client'
5959

6060
- uses: actions/cache@v2
6161
with:
@@ -68,16 +68,16 @@ jobs:
6868
key: ${{ runner.os }}-${{ matrix.librdkafka }}
6969

7070
- name: 'Build librdkafka'
71-
run: './php-kafka/.github/workflows/test/build-librdkafka.sh'
71+
run: './php-simple-kafka-client/.github/workflows/test/build-librdkafka.sh'
7272

7373
- name: 'Build PHP'
74-
run: './php-kafka/.github/workflows/test/build-php.sh'
74+
run: './php-simple-kafka-client/.github/workflows/test/build-php.sh'
7575

76-
- name: 'Build php-kafka'
77-
run: './php-kafka/.github/workflows/test/build-php-simple-kafka-client.sh'
76+
- name: 'Build php-simple-kafka-client'
77+
run: './php-simple-kafka-client/.github/workflows/test/build-php-simple-kafka-client.sh'
7878

7979
- name: 'Start Kafka'
80-
run: './php-kafka/.github/workflows/test/start-kafka.sh'
80+
run: './php-simple-kafka-client/.github/workflows/test/start-kafka.sh'
8181

8282
- name: 'Run tests'
83-
run: './php-kafka/.github/workflows/test/tests.sh'
83+
run: './php-simple-kafka-client/.github/workflows/test/tests.sh'

Diff for: .github/workflows/test/build-php-simple-kafka-client.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $MEMORY_CHECK -eq 1 ]; then
99
PHP_SIMPLE_KAFKA_CLIENT_CFLAGS="-Wall -Werror -Wno-deprecated-declarations"
1010
fi
1111

12-
cd php-kafka
12+
cd php-simple-kafka-client
1313
phpize
1414
CFLAGS="$PHP_SIMPLE_KAFKA_CLIENT_CFLAGS" ./configure
1515
make

Diff for: .github/workflows/test/tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -xve
44

5-
cd php-kafka
5+
cd php-simple-kafka-client
66

77
if [ $MEMORY_CHECK -eq 1 ]; then
88
echo "Enabling memory checking"

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# PHP Kafka extension (php-kafka)
1+
# PHP Kafka extension (php-simple-kafka-client)
22

33
[![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)
44
[![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)
55
![Supported PHP versions: 7.x .. 8.x](https://img.shields.io/badge/php-7.x%20..%208.x-blue.svg)
6-
[![License: BSD-3](https://img.shields.io/badge/License-BSD--3-green.svg)](https://github.com/php-kafka/php-kafka/blob/main/LICENSE) [![Join the chat at https://gitter.im/php-kafka/php-simple-kafka-client](https://badges.gitter.im/php-kafka/php-simple-kafka-client.svg)](https://gitter.im/php-kafka/php-simple-kafka-client?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
[![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) [![Join the chat at https://gitter.im/php-kafka/php-simple-kafka-client](https://badges.gitter.im/php-kafka/php-simple-kafka-client.svg)](https://gitter.im/php-kafka/php-simple-kafka-client?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
77

88
## Documentation
99
Please read the documentation [here](https://php-kafka.github.io/php-simple-kafka-client.github.io/about/)
@@ -14,4 +14,4 @@ Join the [Slack Workspace](https://join.slack.com/t/php-kafka/shared_invite/zt-a
1414
## Credits
1515
This extension relies on [librdkafka](https://github.com/edenhill/librdkafka)
1616
This extension is based on [php-rdkafka](https://github.com/arnaud-lb/php-rdkafka)
17-
Many thanks to all [contributors](https://github.com/php-kafka/php-kafka/graphs/contributors) :heart:
17+
Many thanks to all [contributors](https://github.com/php-kafka/php-simple-kafka-client/graphs/contributors) :heart:

0 commit comments

Comments
 (0)