-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackages.html
211 lines (179 loc) · 6.1 KB
/
packages.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
---
title: Packages
permalink: /packages
layout: base
---
<style>
.h-center h1, .h-center h2 { text-align: center }
.h-center h2 { margin-top: 50px; }
.h-center > p { text-align: center }
</style>
<div class="content site-width h-center">
<h2><a href="https://github.com/amphp/amp">Amp</a></h2>
<p>
Amp provides all basic features. It defines the basic interfaces and
contains standard implementations for those.
</p>
<h2>Basic Components</h2>
<div class="cols">
<div>
<h3><a href="//amphp.org/byte-stream/">byte-stream</a></h3>
<p>
Streams are an abstraction over ordered sequences of bytes. This package provides the
<code>InputStream</code> and <code>OutputStream</code> interfaces and basic implementations
of those.
</p>
</div>
<div>
<h3><a href="https://amphp.org/socket/">socket</a></h3>
<p>
Provides helper functions to easily connect asynchronously to servers and creating server sockets.
Also contains higher-level server and client socket implementations.
</p>
</div>
<div>
<h3><a href="https://amphp.org/dns/">dns</a></h3>
<p>
Provides asynchronous DNS resolution and queries. This package has built-in support for OS specific
system configurations and respects e.g. <code>/etc/hosts</code> and <code>/etc/resolv.conf</code>.
</p>
</div>
</div>
<h2>HTTP Components</h2>
<div class="cols">
<div>
<h3><a href="https://amphp.org/http-server/">http-server</a></h3>
<p>
An advanced HTTP application server with support for HTTP/1 and HTTP/2.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/aerys-session">http-server-session</a></h3>
<p>
Session management for the HTTP server.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/http-server-router">http-server-router</a></h3>
<p>
A routing component for the HTTP server.
</p>
</div>
</div>
<div class="cols">
<div>
<h3><a href="https://amphp.org/http-client/">http-client</a></h3>
<p>
Asynchronous HTTP client with support for HTTP/1 and HTTP/2, concurrent requests, automatic compression,
persistent connections and cookie support.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/websocket">websocket</a></h3>
<p>
A WebSocket client compliant with <a href="https://tools.ietf.org/html/rfc6455">RFC 6455</a>.
</p>
</div>
<div><!-- for correct alignment --></div>
</div>
<h2>Database Components</h2>
<div class="cols">
<div>
<h3><a href="https://github.com/amphp/mysql">mysql</a></h3>
<p>
MySQL client with support for connection pooling.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/postgres">postgres</a></h3>
<p>
Postgres client.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/redis">redis</a></h3>
<p>
Redis client with support for PubSub.
</p>
</div>
</div>
<h2>Message Queue Components</h2>
<div class="cols">
<div>
<h3><a href="https://amphp.org/beanstalk/">beanstalk</a></h3>
<p>
BeanstalkD client.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/stomp">stomp</a></h3>
<p>
STOMP client.
</p>
</div>
</div>
<h2>Utility Components</h2>
<div class="cols">
<div>
<h3><a href="https://github.com/amphp/cache">cache</a></h3>
<p>
Promise-aware caching API specification and implementation.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/process">process</a></h3>
<p>
Async child-process dispatcher.
</p>
</div>
<div>
<h3><a href="https://github.com/amphp/parallel">parallel</a></h3>
<p>
Parallel processing using native threading and multiprocessing.
</p>
</div>
</div>
<div class="cols">
<div>
<h3><a href="https://github.com/amphp/uri">uri</a></h3>
<p>
Uri Parser and Resolver.
</p>
</div>
<div>
<h3><a href="https://amphp.org/windows-registry/">windows-registry</a></h3>
<p>
Windows Registry reader.
</p>
</div>
<div>
<h3><a href="/parallel-functions/">parallel-functions</a></h3>
<p>
Wrapper around <code>amphp/parallel</code> making parallel processing really simple.
</p>
</div>
</div>
<h2>Other Components</h2>
<div class="cols">
<div>
<h3><a href="https://amphp.org/parser/">parser</a></h3>
<p>
A library to build streaming parsers. This library doesn't depend on Amp.
</p>
</div>
</div>
</div>
<hr class="section-separator">
<div class="content site-width h-center">
<h2>More Compatible Packages</h2>
<p>
Apart from the listed packages, there are other compatible packages from other vendors. Compatible packages
should use the <a href="https://github.com/search?p=1&q=topic%3Aamphp&type=Repositories&utf8=%E2%9C%93"><code>amphp</code></a>
tag on GitHub.
</p>
<p>
Additionally, all libraries compatible with
<a href="http://reactphp.org/" rel="nofollow">ReactPHP</a> are fully compatible with Amp by using <a
href="https://amphp.org/react-adapter">our adapter</a>.
</p>
</div>