Skip to content

Commit

Permalink
gh docs scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
sweikenb committed Sep 29, 2023
1 parent c382a04 commit e89f4ca
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Simple and easy to use thread-based process manager for PHP based on default PCN

**Further information:**

- [Docs](docs/index.md)
- [Docs](https://sweikenb.github.io/pcntl/)
- [Changelog](CHANGELOG.md)
- [MIT License](LICENSE.txt)

Expand Down
32 changes: 31 additions & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# Summary

- [Chapter 1](./chapter_1.md)
# Installation

Install the latest version using [composer](https://getcomposer.org/):

```bash
composer require sweikenb/pcntl
```

## System Requirements

This library requires at least **PHP v8.2** with the following extensions enabled:

- `pcntl`
- `posix`
- `sockets`

Note that this library is **incompatible** with the `grpc` extension!

In order to execute the unit-tests you will need to run them in a linux environment.

# Features

- [Process Manager](features/process-manager.md)
- [Process Queue](features/process-queue.md)
- [Inter Process Communication (IPC)](features/ipc.md)

# Examples

- [Async Workloads](examples/async-workloads.md)
- [Queued Parallel-Processing](examples/queued-processing.md)
- [IPC Examples](examples/ipc-examples.md)
1 change: 0 additions & 1 deletion docs/src/chapter_1.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/src/examples/async-workloads.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Async Workloads
1 change: 1 addition & 0 deletions docs/src/examples/ipc-examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# IPC Examples
1 change: 1 addition & 0 deletions docs/src/examples/queued-processing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Queued Processing
1 change: 1 addition & 0 deletions docs/src/features/ipc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Inter Process Communication (IPC)
1 change: 1 addition & 0 deletions docs/src/features/process-manager.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Process Manager
1 change: 1 addition & 0 deletions docs/src/features/process-queue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Process Queue

0 comments on commit e89f4ca

Please sign in to comment.