This repository was archived by the owner on Jan 31, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed
Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 55
66zend-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
1818Additionally, 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/ ) .
You can’t perform that action at this time.
0 commit comments