Skip to content

Commit

Permalink
Merge pull request #10 from roadrunner-php/docs
Browse files Browse the repository at this point in the history
Fix documentation links
  • Loading branch information
msmakouz authored Feb 19, 2024
2 parents 2e3d7e5 + 13bb24c commit 362208a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
on:
push:
branches:
- master
- '*.*'
pull_request: null

Expand All @@ -13,7 +12,5 @@ jobs:
with:
os: >-
['ubuntu-latest']
php: >-
['8.1', '8.2']
stability: >-
['prefer-stable']
3 changes: 0 additions & 3 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
on:
push:
branches:
- master
- '*.*'
pull_request: null

Expand All @@ -13,5 +12,3 @@ jobs:
with:
os: >-
['ubuntu-latest']
php: >-
['8.1']
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[![psalm](https://github.com/spiral/roadrunner-services/actions/workflows/psalm.yml/badge.svg)](https://github.com/spiral/roadrunner-services/actions)
[![Total Downloads](https://poser.pugx.org/spiral/roadrunner-services/downloads)](https://packagist.org/packages/spiral/roadrunner-services)

This package will help you to manage [Roadrunner services](https://roadrunner.dev/docs/plugins-service)
This package will help you to manage [Roadrunner services](https://docs.roadrunner.dev/plugins/service)

## Requirements

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
],
"homepage": "https://roadrunner.dev/",
"support": {
"docs": "https://roadrunner.dev/docs",
"docs": "https://docs.roadrunner.dev",
"issues": "https://github.com/roadrunner-server/roadrunner/issues",
"forum": "https://forum.roadrunner.dev/",
"chat": "https://discord.gg/V6EK4he"
Expand All @@ -36,7 +36,7 @@
],
"require": {
"php": ">=8.1",
"roadrunner-php/roadrunner-api-dto": "^1.1",
"roadrunner-php/roadrunner-api-dto": "^1.4",
"spiral/roadrunner": "^2023.2",
"spiral/goridge": "^4.0",
"google/protobuf": "^3.7"
Expand Down
2 changes: 1 addition & 1 deletion src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function list(): array
* @param bool $serviceNameInLogs Show the name of the service in logs (e.g. service.some_service_1).
* @param int<0, max> $stopTimeout Timeout for the process stop operation.
* @throws Exception\ServiceException
* @see https://roadrunner.dev/docs/beep-beep-service
* @see https://docs.roadrunner.dev/plugins/service
*/
public function create(
string $name,
Expand Down
2 changes: 1 addition & 1 deletion tests/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function testServiceStatusesShouldBeReturned(): void
'pid' => 33,
'memory_usage' => 200,
'command' => 'foo/bar',
'status' => new \RoadRunner\Shared\DTO\V1\Status([
'status' => new \RoadRunner\Common\DTO\V1\Status([
'code' => 100,
'message' => 'Running',
'details' => [
Expand Down

0 comments on commit 362208a

Please sign in to comment.