Skip to content

Commit

Permalink
chore: adjust package name and repository
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Jan 30, 2024
1 parent 1272b9f commit bc90a45
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
First stable release


[Unreleased]: https://github.com/brotkrueml/jobrouter-client/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.4.0...v2.0.0
[1.4.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.2...v1.2.0
[1.1.2]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/brotkrueml/jobrouter-client/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/brotkrueml/jobrouter-client/releases/tag/v1.0.0
[Unreleased]: https://github.com/jobrouter/php-rest-client/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/jobrouter/php-rest-client/compare/v1.4.0...v2.0.0
[1.4.0]: https://github.com/jobrouter/php-rest-client/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/jobrouter/php-rest-client/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/jobrouter/php-rest-client/compare/v1.1.2...v1.2.0
[1.1.2]: https://github.com/jobrouter/php-rest-client/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/jobrouter/php-rest-client/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/jobrouter/php-rest-client/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/jobrouter/php-rest-client/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/jobrouter/php-rest-client/releases/tag/v1.0.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# JobRouter Client

[![CI Status](https://github.com/brotkrueml/jobrouter-client/workflows/CI/badge.svg?branch=main)](https://github.com/brotkrueml/jobrouter-client/actions?query=workflow%3ACI)
[![Latest Stable Version](https://img.shields.io/packagist/v/brotkrueml/jobrouter-client.svg?label=stable)](https://packagist.org/packages/brotkrueml/jobrouter-client)
[![Total Downloads](https://img.shields.io/packagist/dt/brotkrueml/jobrouter-client.svg)](https://packagist.org/packages/brotkrueml/jobrouter-client)
[![CI Status](https://github.com/jobrouter/php-rest-client/workflows/CI/badge.svg?branch=main)](https://github.com/jobrouter/php-rest-client/actions?query=workflow%3ACI)
[![Latest Stable Version](https://img.shields.io/packagist/v/jobrouter/php-rest-client.svg?label=stable)](https://packagist.org/packages/jobrouter/php-rest-client)
[![Total Downloads](https://img.shields.io/packagist/dt/jobrouter/php-rest-client.svg)](https://packagist.org/packages/jobrouter/php-rest-client)

[JobRouter®](https://www.jobrouter.com/) is a scalable digitalisation platform which links processes, data and
documents. This JobRouter Client eases the access to the REST API.
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "brotkrueml/jobrouter-client",
"name": "jobrouter/rest-client",
"description": "Rest client for the JobRouter® digitalisation platform",
"license": "GPL-2.0-or-later",
"type": "library",
Expand All @@ -14,8 +14,8 @@
}
],
"support": {
"issues": "https://github.com/brotkrueml/jobrouter-client/issues",
"source": "https://github.com/brotkrueml/jobrouter-client",
"issues": "https://github.com/jobrouter/rest-client/issues",
"source": "https://github.com/jobrouter/rest-client",
"docs": "https://jobrouter-client.readthedocs.io/"
},
"require": {
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ composer require jobrouter/rest-client
**Note:** The JobRouter REST Client *before* version 3.0 uses another dependency:

```shell
composer require brotkrueml/jobrouter-client
composer require jobrouter/rest-client
```

This is the preferred way: You can track new releases of the JobRouter REST Client
Expand All @@ -55,13 +55,13 @@ It is advised to check the integrity of the package:
### Linux

```shell
sha256sum -c jobrouter-client-\ |release|\ .tar.gz.sha256.txt
sha256sum -c jobrouter-rest-client-\ |release|\ .tar.gz.sha256.txt
```

It should output:

```text
jobrouter-client-<version>.tar.gz: OK
jobrouter-rest-client-<version>.tar.gz: OK
```


Expand All @@ -72,7 +72,7 @@ Windows is shipped with the
program. You can check the hash of the file with:

```shell
CertUtil -hashfile jobrouter-client-<version>.zip sha256
CertUtil -hashfile jobrouter-rest-client-<version>.zip sha256
```

and compare it with the hash value in the corresponding
Expand Down

0 comments on commit bc90a45

Please sign in to comment.