Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c8f96ef

Browse files
committedNov 22, 2017
Update README
1 parent a8dbbe9 commit c8f96ef

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed
 

‎README.md

+20-5
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
zend-router provides flexible HTTP routing.
77

8-
Routing currently works against the [zend-http](https://github.com/zendframework/zend-http)
9-
request and responses, and provides capabilities around:
8+
Routing currently works against [PSR-7 HTTP message interfaces](http://www.php-fig.org/psr/psr-7/)
9+
server requests, and provides capabilities around:
1010

1111
- Literal path matches
1212
- Path segment matches (at path boundaries, and optionally validated using regex)
@@ -16,7 +16,22 @@ request and responses, and provides capabilities around:
1616
- Hostname
1717

1818
Additionally, it supports combinations of different route types in tree
19-
structures, allowing for fast, b-tree lookups.
19+
structures, allowing for fast lookup.
2020

21-
- File issues at https://github.com/zendframework/zend-router/issues
22-
- Documentation is at https://docs.zendframework.com/zend-router
21+
## Installation
22+
23+
Run the following to install this library:
24+
25+
```bash
26+
$ composer require zendframework/zend-router
27+
```
28+
29+
## Documentation
30+
31+
Documentation is [in the doc tree](docs/book/), and can be compiled using [mkdocs](http://www.mkdocs.org):
32+
33+
```bash
34+
$ mkdocs build
35+
```
36+
37+
You may also [browse the documentation online](https://docs.zendframework.com/zend-router/).

0 commit comments

Comments
 (0)
This repository has been archived.