This repository was archived by the owner on Jan 31, 2020. It is now read-only.
File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 5
5
6
6
zend-router provides flexible HTTP routing.
7
7
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:
10
10
11
11
- Literal path matches
12
12
- Path segment matches (at path boundaries, and optionally validated using regex)
@@ -16,7 +16,22 @@ request and responses, and provides capabilities around:
16
16
- Hostname
17
17
18
18
Additionally, it supports combinations of different route types in tree
19
- structures, allowing for fast, b-tree lookups .
19
+ structures, allowing for fast lookup .
20
20
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