90 |
91 | ## مجوزها
92 | این پروژه تحت لایسنس GNU GPL v3.0 قرار داره.
93 |
94 | ## حمایت
95 | * در صورتی که از این برنامه راضی بودید، لطفاً با دادن یک ستاره (:star:) (از بخش بالای سایت) من را خوشحال کنید! :wink:
96 |
97 | * این یک پروژه تجاری نیست و سود مادی برای من ندارد و به صورت دلی:heart: انجام میشود. اما میدانید که برنامهنویسی کار خیلی وقتگیر و پر زحمتی است. اگر این پروژه برای شما مفید بود و دلتان خواست، لطفاً برای دلگرمی من میتوانید هر مبلغی که مایل بودید هر چند ناچیز به صورت هدیه واریز کنید تا تبدیل به انرژی شود برای ادامه راه، بهبود، توسعه و رفع اشکالات احتمالی این پروژه در آینده.
98 | جهت پرداخت آنلاین از لینک زیر استفاده کنید و لطفاً حتماً در توضیحات آن، نام این پروژه را ذکر کنید:
99 | [https://zarinp.al/nabikaz](https://zarinp.al/nabikaz)
100 | همیشه از لطف شما سپاسگزارم :sweat_smile::rose:
101 |
--------------------------------------------------------------------------------
/follow.php:
--------------------------------------------------------------------------------
1 |
' . PHP_EOL;
10 | echo 'Project: https://github.com/NabiKAZ/Follow-Following-Instagram' . PHP_EOL;
11 | echo 'Copyright 2020 - License GNU GPL v3.0' . PHP_EOL;
12 | echo '==============================================================' . PHP_EOL;
13 | echo PHP_EOL;
14 |
15 | if (!$action || ($action != 'follow' && $action != 'unfollow')) {
16 | echo 'Usage:' . PHP_EOL;
17 | echo ' php follow.php [OPTIONS]' . PHP_EOL;
18 | echo PHP_EOL;
19 | echo 'Options:' . PHP_EOL;
20 | echo ' a = action (Values: follow,unfollow) (Required)' . PHP_EOL;
21 | echo PHP_EOL;
22 | echo 'Examples:' . PHP_EOL;
23 | echo ' php follow.php a=follow' . PHP_EOL;
24 | echo ' php follow.php a=unfollow' . PHP_EOL;
25 | die;
26 | }
27 |
28 | $ig = new \InstagramAPI\Instagram($debug, $truncated_debug, [
29 | 'storage' => 'file',
30 | 'basefolder' => $base_folder,
31 | ]);
32 |
33 | try {
34 | $loginResponse = $ig->login($username, $password);
35 | if ($loginResponse !== null && $loginResponse->isTwoFactorRequired()) {
36 | $two_factor_identifier = $loginResponse->getTwoFactorInfo()->getTwoFactorIdentifier();
37 | echo "input sms code: ";
38 | $verification_code = trim(fgets(STDIN));
39 | $ig->finishTwoFactorLogin($verification_code, $two_factor_identifier);
40 | }
41 | } catch (\Exception $e) {
42 | echo 'Something went wrong: '.$e->getMessage()."\n";
43 | exit(0);
44 | }
45 |
46 | try {
47 |
48 | if ($action == 'follow') {
49 | echo 'Getting self (' . $username . ') following...' . PHP_EOL;
50 | $rank_token = \InstagramAPI\Signatures::generateUUID();
51 | $max_id = null;
52 | $my_following = [];
53 | do {
54 | $response = $ig->people->getSelfFollowing($rank_token, null, $max_id);
55 | foreach ($response->getUsers() as $user) {
56 | $my_following[$user->getPk()] = $user->getUsername();
57 | }
58 | $max_id = $response->getNextMaxId();
59 | echo '.';
60 | sleep(1);
61 | } while ($max_id !== null);
62 | echo PHP_EOL;
63 | echo 'Found ' . count($my_following) . ' users.' . PHP_EOL;
64 | echo PHP_EOL;
65 |
66 | echo 'Starting follow following of target page (' . $target_page . ')...' . PHP_EOL;
67 | $user_id = $ig->people->getUserIdForName($target_page);
68 | $rank_token = \InstagramAPI\Signatures::generateUUID();
69 | $max_id = null;
70 | $page = 1;
71 | $followed_count = 0;
72 | $following_count = 0;
73 | do {
74 | echo 'Page #' . $page . PHP_EOL;
75 | $response = $ig->people->getFollowing($user_id, $rank_token, null, $max_id);
76 | foreach ($response->getUsers() as $user) {
77 | echo str_pad($user->getPk(), 11) . ' : ' . str_pad($user->getUsername(), 25);
78 | if (isset($my_following[$user->getPk()])) {
79 | echo 'Followed.' . PHP_EOL;
80 | $followed_count++;
81 | } else {
82 | echo 'Following...';
83 | $ig->people->follow($user->getPk());
84 | file_put_contents($users_file, $user->getPk() . "\t" . $user->getUsername() . PHP_EOL, FILE_APPEND);
85 | echo 'Done.' . PHP_EOL;
86 | $following_count++;
87 | sleep(1);
88 | }
89 | //if (@++$n>=3) break;//for debug
90 | }
91 | $max_id = $response->getNextMaxId();
92 | $page++;
93 | } while ($max_id !== null);
94 |
95 | echo PHP_EOL;
96 | echo 'Followed count: ' . $followed_count . PHP_EOL;
97 | echo 'New following count: ' . $following_count . PHP_EOL;
98 |
99 | } elseif ($action == 'unfollow') {
100 | $users_content = file_get_contents($users_file);
101 | $users = explode(PHP_EOL, $users_content);
102 | $users = array_filter($users);
103 | if (count($users) == 0) {
104 | echo 'Not found any user for unfollow.' . PHP_EOL;
105 | }
106 | foreach ($users as $user) {
107 | list($user_id, $username) = explode("\t", $user);
108 | echo str_pad($user_id, 11) . ' : ' . str_pad($username, 25);
109 | echo 'Unfollowing...';
110 | $ig->people->unfollow($user_id);
111 | $users_content = str_replace($user_id . "\t" . $username . PHP_EOL, '', $users_content);
112 | echo 'Done.' . PHP_EOL;
113 | }
114 | file_put_contents($users_file, $users_content);
115 | }
116 |
117 | } catch (\Exception $e) {
118 | echo 'Something went wrong: '.$e->getMessage()."\n";
119 | }
120 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/composer.lock:
--------------------------------------------------------------------------------
1 | {
2 | "_readme": [
3 | "This file locks the dependencies of your project to a known state",
4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5 | "This file is @generated automatically"
6 | ],
7 | "content-hash": "cf18fb1a2eb5043bf4c99c1d67c15252",
8 | "packages": [
9 | {
10 | "name": "binsoul/net-mqtt",
11 | "version": "0.7.0",
12 | "source": {
13 | "type": "git",
14 | "url": "https://github.com/binsoul/net-mqtt.git",
15 | "reference": "6c99b0643a44038cf750c71d23fd4529b52f816f"
16 | },
17 | "dist": {
18 | "type": "zip",
19 | "url": "https://api.github.com/repos/binsoul/net-mqtt/zipball/6c99b0643a44038cf750c71d23fd4529b52f816f",
20 | "reference": "6c99b0643a44038cf750c71d23fd4529b52f816f",
21 | "shasum": ""
22 | },
23 | "require": {
24 | "ext-ctype": "*",
25 | "ext-mbstring": "*",
26 | "php": "^7.2"
27 | },
28 | "require-dev": {
29 | "friendsofphp/php-cs-fixer": "^2",
30 | "phpstan/phpstan": "^0.12",
31 | "phpunit/phpunit": "^8"
32 | },
33 | "type": "library",
34 | "extra": {
35 | "branch-alias": {
36 | "dev-master": "1.0-dev"
37 | }
38 | },
39 | "autoload": {
40 | "psr-4": {
41 | "BinSoul\\Net\\Mqtt\\": "src"
42 | }
43 | },
44 | "notification-url": "https://packagist.org/downloads/",
45 | "license": [
46 | "MIT"
47 | ],
48 | "authors": [
49 | {
50 | "name": "Sebastian Mößler",
51 | "email": "code@binsoul.de",
52 | "homepage": "https://github.com/binsoul",
53 | "role": "Developer"
54 | }
55 | ],
56 | "description": "MQTT protocol implementation",
57 | "homepage": "https://github.com/binsoul/net-mqtt",
58 | "keywords": [
59 | "mqtt",
60 | "net"
61 | ],
62 | "time": "2019-12-08T16:46:29+00:00"
63 | },
64 | {
65 | "name": "binsoul/net-mqtt-client-react",
66 | "version": "0.3.2",
67 | "source": {
68 | "type": "git",
69 | "url": "https://github.com/binsoul/net-mqtt-client-react.git",
70 | "reference": "6a80fea50e927ebb8bb8a631ea7903c22742ded5"
71 | },
72 | "dist": {
73 | "type": "zip",
74 | "url": "https://api.github.com/repos/binsoul/net-mqtt-client-react/zipball/6a80fea50e927ebb8bb8a631ea7903c22742ded5",
75 | "reference": "6a80fea50e927ebb8bb8a631ea7903c22742ded5",
76 | "shasum": ""
77 | },
78 | "require": {
79 | "binsoul/net-mqtt": "~0.2",
80 | "php": "~5.6|~7.0",
81 | "react/promise": "~2.0",
82 | "react/socket": "~0.8"
83 | },
84 | "require-dev": {
85 | "friendsofphp/php-cs-fixer": "~1.0",
86 | "phpunit/phpunit": "~4.0||~5.0"
87 | },
88 | "type": "library",
89 | "extra": {
90 | "branch-alias": {
91 | "dev-master": "1.0-dev"
92 | }
93 | },
94 | "autoload": {
95 | "psr-4": {
96 | "BinSoul\\Net\\Mqtt\\Client\\React\\": "src"
97 | }
98 | },
99 | "notification-url": "https://packagist.org/downloads/",
100 | "license": [
101 | "MIT"
102 | ],
103 | "authors": [
104 | {
105 | "name": "Sebastian Mößler",
106 | "email": "code@binsoul.de",
107 | "homepage": "https://github.com/binsoul",
108 | "role": "Developer"
109 | }
110 | ],
111 | "description": "Asynchronous MQTT client built on React",
112 | "homepage": "https://github.com/binsoul/net-mqtt-client-react",
113 | "keywords": [
114 | "client",
115 | "mqtt",
116 | "net"
117 | ],
118 | "time": "2017-08-20T08:06:53+00:00"
119 | },
120 | {
121 | "name": "clue/http-proxy-react",
122 | "version": "v1.3.0",
123 | "source": {
124 | "type": "git",
125 | "url": "https://github.com/clue/php-http-proxy-react.git",
126 | "reference": "eeff725640ed53386a6adb05ffdbfc2837404fdf"
127 | },
128 | "dist": {
129 | "type": "zip",
130 | "url": "https://api.github.com/repos/clue/php-http-proxy-react/zipball/eeff725640ed53386a6adb05ffdbfc2837404fdf",
131 | "reference": "eeff725640ed53386a6adb05ffdbfc2837404fdf",
132 | "shasum": ""
133 | },
134 | "require": {
135 | "php": ">=5.3",
136 | "react/promise": " ^2.1 || ^1.2.1",
137 | "react/socket": "^1.0 || ^0.8.4",
138 | "ringcentral/psr7": "^1.2"
139 | },
140 | "require-dev": {
141 | "clue/block-react": "^1.1",
142 | "phpunit/phpunit": "^5.0 || ^4.8",
143 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3"
144 | },
145 | "type": "library",
146 | "autoload": {
147 | "psr-4": {
148 | "Clue\\React\\HttpProxy\\": "src/"
149 | }
150 | },
151 | "notification-url": "https://packagist.org/downloads/",
152 | "license": [
153 | "MIT"
154 | ],
155 | "authors": [
156 | {
157 | "name": "Christian Lück",
158 | "email": "christian@lueck.tv"
159 | }
160 | ],
161 | "description": "Async HTTP proxy connector, use any TCP/IP-based protocol through an HTTP CONNECT proxy server, built on top of ReactPHP",
162 | "homepage": "https://github.com/clue/php-http-proxy-react",
163 | "keywords": [
164 | "async",
165 | "connect",
166 | "http",
167 | "proxy",
168 | "reactphp"
169 | ],
170 | "time": "2018-02-13T16:31:32+00:00"
171 | },
172 | {
173 | "name": "clue/socks-react",
174 | "version": "v0.8.7",
175 | "source": {
176 | "type": "git",
177 | "url": "https://github.com/clue/php-socks-react.git",
178 | "reference": "0fcd6f2f506918ff003f1b995c6e78443f26e8ea"
179 | },
180 | "dist": {
181 | "type": "zip",
182 | "url": "https://api.github.com/repos/clue/php-socks-react/zipball/0fcd6f2f506918ff003f1b995c6e78443f26e8ea",
183 | "reference": "0fcd6f2f506918ff003f1b995c6e78443f26e8ea",
184 | "shasum": ""
185 | },
186 | "require": {
187 | "evenement/evenement": "~3.0|~1.0|~2.0",
188 | "php": ">=5.3",
189 | "react/promise": "^2.1 || ^1.2",
190 | "react/socket": "^1.0 || ^0.8.6"
191 | },
192 | "require-dev": {
193 | "clue/block-react": "^1.1",
194 | "clue/connection-manager-extra": "^1.0 || ^0.7",
195 | "phpunit/phpunit": "^6.0 || ^5.7 || ^4.8.35",
196 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3"
197 | },
198 | "type": "library",
199 | "autoload": {
200 | "psr-4": {
201 | "Clue\\React\\Socks\\": "src/"
202 | }
203 | },
204 | "notification-url": "https://packagist.org/downloads/",
205 | "license": [
206 | "MIT"
207 | ],
208 | "authors": [
209 | {
210 | "name": "Christian Lück",
211 | "email": "christian@lueck.tv"
212 | }
213 | ],
214 | "description": "Async SOCKS4, SOCKS4a and SOCKS5 proxy client and server implementation, built on top of ReactPHP",
215 | "homepage": "https://github.com/clue/php-socks-react",
216 | "keywords": [
217 | "async",
218 | "proxy",
219 | "reactphp",
220 | "socks client",
221 | "socks protocol",
222 | "socks server",
223 | "tcp tunnel"
224 | ],
225 | "time": "2017-12-17T14:47:58+00:00"
226 | },
227 | {
228 | "name": "corneltek/getoptionkit",
229 | "version": "2.6.0",
230 | "source": {
231 | "type": "git",
232 | "url": "https://github.com/c9s/GetOptionKit.git",
233 | "reference": "995607ddf4fc90ebdb4a7d58fe972d581ad8495f"
234 | },
235 | "dist": {
236 | "type": "zip",
237 | "url": "https://api.github.com/repos/c9s/GetOptionKit/zipball/995607ddf4fc90ebdb4a7d58fe972d581ad8495f",
238 | "reference": "995607ddf4fc90ebdb4a7d58fe972d581ad8495f",
239 | "shasum": ""
240 | },
241 | "require": {
242 | "php": ">=5.3.0"
243 | },
244 | "type": "library",
245 | "extra": {
246 | "branch-alias": {
247 | "dev-master": "2.6.x-dev"
248 | }
249 | },
250 | "autoload": {
251 | "psr-4": {
252 | "GetOptionKit\\": "src/"
253 | }
254 | },
255 | "notification-url": "https://packagist.org/downloads/",
256 | "license": [
257 | "MIT"
258 | ],
259 | "authors": [
260 | {
261 | "name": "Yo-An Lin",
262 | "email": "yoanlin93@gmail.com"
263 | }
264 | ],
265 | "description": "Powerful command-line option toolkit",
266 | "homepage": "http://github.com/c9s/GetOptionKit",
267 | "time": "2017-06-30T14:54:48+00:00"
268 | },
269 | {
270 | "name": "evenement/evenement",
271 | "version": "v3.0.1",
272 | "source": {
273 | "type": "git",
274 | "url": "https://github.com/igorw/evenement.git",
275 | "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
276 | },
277 | "dist": {
278 | "type": "zip",
279 | "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
280 | "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
281 | "shasum": ""
282 | },
283 | "require": {
284 | "php": ">=7.0"
285 | },
286 | "require-dev": {
287 | "phpunit/phpunit": "^6.0"
288 | },
289 | "type": "library",
290 | "autoload": {
291 | "psr-0": {
292 | "Evenement": "src"
293 | }
294 | },
295 | "notification-url": "https://packagist.org/downloads/",
296 | "license": [
297 | "MIT"
298 | ],
299 | "authors": [
300 | {
301 | "name": "Igor Wiedler",
302 | "email": "igor@wiedler.ch"
303 | }
304 | ],
305 | "description": "Événement is a very simple event dispatching library for PHP",
306 | "keywords": [
307 | "event-dispatcher",
308 | "event-emitter"
309 | ],
310 | "time": "2017-07-23T21:35:13+00:00"
311 | },
312 | {
313 | "name": "guzzlehttp/guzzle",
314 | "version": "6.5.2",
315 | "source": {
316 | "type": "git",
317 | "url": "https://github.com/guzzle/guzzle.git",
318 | "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
319 | },
320 | "dist": {
321 | "type": "zip",
322 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
323 | "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
324 | "shasum": ""
325 | },
326 | "require": {
327 | "ext-json": "*",
328 | "guzzlehttp/promises": "^1.0",
329 | "guzzlehttp/psr7": "^1.6.1",
330 | "php": ">=5.5"
331 | },
332 | "require-dev": {
333 | "ext-curl": "*",
334 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
335 | "psr/log": "^1.1"
336 | },
337 | "suggest": {
338 | "ext-intl": "Required for Internationalized Domain Name (IDN) support",
339 | "psr/log": "Required for using the Log middleware"
340 | },
341 | "type": "library",
342 | "extra": {
343 | "branch-alias": {
344 | "dev-master": "6.5-dev"
345 | }
346 | },
347 | "autoload": {
348 | "psr-4": {
349 | "GuzzleHttp\\": "src/"
350 | },
351 | "files": [
352 | "src/functions_include.php"
353 | ]
354 | },
355 | "notification-url": "https://packagist.org/downloads/",
356 | "license": [
357 | "MIT"
358 | ],
359 | "authors": [
360 | {
361 | "name": "Michael Dowling",
362 | "email": "mtdowling@gmail.com",
363 | "homepage": "https://github.com/mtdowling"
364 | }
365 | ],
366 | "description": "Guzzle is a PHP HTTP client library",
367 | "homepage": "http://guzzlephp.org/",
368 | "keywords": [
369 | "client",
370 | "curl",
371 | "framework",
372 | "http",
373 | "http client",
374 | "rest",
375 | "web service"
376 | ],
377 | "time": "2019-12-23T11:57:10+00:00"
378 | },
379 | {
380 | "name": "guzzlehttp/promises",
381 | "version": "v1.3.1",
382 | "source": {
383 | "type": "git",
384 | "url": "https://github.com/guzzle/promises.git",
385 | "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
386 | },
387 | "dist": {
388 | "type": "zip",
389 | "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
390 | "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
391 | "shasum": ""
392 | },
393 | "require": {
394 | "php": ">=5.5.0"
395 | },
396 | "require-dev": {
397 | "phpunit/phpunit": "^4.0"
398 | },
399 | "type": "library",
400 | "extra": {
401 | "branch-alias": {
402 | "dev-master": "1.4-dev"
403 | }
404 | },
405 | "autoload": {
406 | "psr-4": {
407 | "GuzzleHttp\\Promise\\": "src/"
408 | },
409 | "files": [
410 | "src/functions_include.php"
411 | ]
412 | },
413 | "notification-url": "https://packagist.org/downloads/",
414 | "license": [
415 | "MIT"
416 | ],
417 | "authors": [
418 | {
419 | "name": "Michael Dowling",
420 | "email": "mtdowling@gmail.com",
421 | "homepage": "https://github.com/mtdowling"
422 | }
423 | ],
424 | "description": "Guzzle promises library",
425 | "keywords": [
426 | "promise"
427 | ],
428 | "time": "2016-12-20T10:07:11+00:00"
429 | },
430 | {
431 | "name": "guzzlehttp/psr7",
432 | "version": "1.6.1",
433 | "source": {
434 | "type": "git",
435 | "url": "https://github.com/guzzle/psr7.git",
436 | "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
437 | },
438 | "dist": {
439 | "type": "zip",
440 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
441 | "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
442 | "shasum": ""
443 | },
444 | "require": {
445 | "php": ">=5.4.0",
446 | "psr/http-message": "~1.0",
447 | "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
448 | },
449 | "provide": {
450 | "psr/http-message-implementation": "1.0"
451 | },
452 | "require-dev": {
453 | "ext-zlib": "*",
454 | "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
455 | },
456 | "suggest": {
457 | "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
458 | },
459 | "type": "library",
460 | "extra": {
461 | "branch-alias": {
462 | "dev-master": "1.6-dev"
463 | }
464 | },
465 | "autoload": {
466 | "psr-4": {
467 | "GuzzleHttp\\Psr7\\": "src/"
468 | },
469 | "files": [
470 | "src/functions_include.php"
471 | ]
472 | },
473 | "notification-url": "https://packagist.org/downloads/",
474 | "license": [
475 | "MIT"
476 | ],
477 | "authors": [
478 | {
479 | "name": "Michael Dowling",
480 | "email": "mtdowling@gmail.com",
481 | "homepage": "https://github.com/mtdowling"
482 | },
483 | {
484 | "name": "Tobias Schultze",
485 | "homepage": "https://github.com/Tobion"
486 | }
487 | ],
488 | "description": "PSR-7 message implementation that also provides common utility methods",
489 | "keywords": [
490 | "http",
491 | "message",
492 | "psr-7",
493 | "request",
494 | "response",
495 | "stream",
496 | "uri",
497 | "url"
498 | ],
499 | "time": "2019-07-01T23:21:34+00:00"
500 | },
501 | {
502 | "name": "lazyjsonmapper/lazyjsonmapper",
503 | "version": "v1.6.4",
504 | "source": {
505 | "type": "git",
506 | "url": "https://github.com/lazyjsonmapper/lazyjsonmapper.git",
507 | "reference": "0b047af4b48ba8c44bbcdbe8e1e6a53e2303c1bb"
508 | },
509 | "dist": {
510 | "type": "zip",
511 | "url": "https://api.github.com/repos/lazyjsonmapper/lazyjsonmapper/zipball/0b047af4b48ba8c44bbcdbe8e1e6a53e2303c1bb",
512 | "reference": "0b047af4b48ba8c44bbcdbe8e1e6a53e2303c1bb",
513 | "shasum": ""
514 | },
515 | "require": {
516 | "corneltek/getoptionkit": "2.*",
517 | "php": ">=5.6"
518 | },
519 | "require-dev": {
520 | "friendsofphp/php-cs-fixer": "^2.7.1",
521 | "phpunit/phpunit": "6.*"
522 | },
523 | "bin": [
524 | "bin/lazydoctor"
525 | ],
526 | "type": "library",
527 | "autoload": {
528 | "psr-4": {
529 | "LazyJsonMapper\\": "src/"
530 | }
531 | },
532 | "notification-url": "https://packagist.org/downloads/",
533 | "license": [
534 | "Apache-2.0"
535 | ],
536 | "authors": [
537 | {
538 | "name": "SteveJobzniak",
539 | "homepage": "https://github.com/SteveJobzniak",
540 | "role": "Developer"
541 | }
542 | ],
543 | "description": "Advanced, intelligent & automatic object-oriented JSON containers for PHP.",
544 | "homepage": "https://github.com/SteveJobzniak/LazyJsonMapper",
545 | "keywords": [
546 | "development",
547 | "json"
548 | ],
549 | "time": "2019-12-05T22:22:33+00:00"
550 | },
551 | {
552 | "name": "mgp25/instagram-php",
553 | "version": "v7.0.1",
554 | "source": {
555 | "type": "git",
556 | "url": "https://github.com/mgp25/Instagram-API.git",
557 | "reference": "53421f90b9ef7743f1c6221c4963f2b9f7a592e8"
558 | },
559 | "dist": {
560 | "type": "zip",
561 | "url": "https://api.github.com/repos/mgp25/Instagram-API/zipball/53421f90b9ef7743f1c6221c4963f2b9f7a592e8",
562 | "reference": "53421f90b9ef7743f1c6221c4963f2b9f7a592e8",
563 | "shasum": ""
564 | },
565 | "require": {
566 | "binsoul/net-mqtt-client-react": "^0.3.2",
567 | "clue/http-proxy-react": "^1.1.0",
568 | "clue/socks-react": "^0.8.2",
569 | "ext-bcmath": "*",
570 | "ext-curl": "*",
571 | "ext-exif": "*",
572 | "ext-gd": "*",
573 | "ext-mbstring": "*",
574 | "ext-zlib": "*",
575 | "guzzlehttp/guzzle": "^6.2",
576 | "lazyjsonmapper/lazyjsonmapper": "^1.6.1",
577 | "php": ">=5.6",
578 | "psr/log": "^1.0",
579 | "react/event-loop": "^0.4.3",
580 | "react/promise": "^2.5",
581 | "react/socket": "^0.8",
582 | "symfony/process": "^3.4|^4.0",
583 | "valga/fbns-react": "^0.1.8",
584 | "winbox/args": "1.0.0"
585 | },
586 | "require-dev": {
587 | "friendsofphp/php-cs-fixer": "^2.11.0",
588 | "monolog/monolog": "^1.23",
589 | "phpunit/phpunit": "^5.7 || ^6.2",
590 | "react/http": "^0.7.2"
591 | },
592 | "suggest": {
593 | "ext-event": "Installing PHP's native Event extension enables faster Realtime class event handling."
594 | },
595 | "type": "library",
596 | "autoload": {
597 | "psr-4": {
598 | "InstagramAPI\\": "src/"
599 | }
600 | },
601 | "notification-url": "https://packagist.org/downloads/",
602 | "license": [
603 | "RPL-1.5",
604 | "proprietary"
605 | ],
606 | "authors": [
607 | {
608 | "name": "mgp25",
609 | "email": "me@mgp25.com",
610 | "role": "Founder"
611 | },
612 | {
613 | "name": "SteveJobzniak",
614 | "homepage": "https://github.com/SteveJobzniak",
615 | "role": "Developer"
616 | }
617 | ],
618 | "description": "Instagram's private API for PHP",
619 | "keywords": [
620 | "api",
621 | "instagram",
622 | "php",
623 | "private"
624 | ],
625 | "time": "2019-09-17T00:56:42+00:00"
626 | },
627 | {
628 | "name": "psr/http-message",
629 | "version": "1.0.1",
630 | "source": {
631 | "type": "git",
632 | "url": "https://github.com/php-fig/http-message.git",
633 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
634 | },
635 | "dist": {
636 | "type": "zip",
637 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
638 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
639 | "shasum": ""
640 | },
641 | "require": {
642 | "php": ">=5.3.0"
643 | },
644 | "type": "library",
645 | "extra": {
646 | "branch-alias": {
647 | "dev-master": "1.0.x-dev"
648 | }
649 | },
650 | "autoload": {
651 | "psr-4": {
652 | "Psr\\Http\\Message\\": "src/"
653 | }
654 | },
655 | "notification-url": "https://packagist.org/downloads/",
656 | "license": [
657 | "MIT"
658 | ],
659 | "authors": [
660 | {
661 | "name": "PHP-FIG",
662 | "homepage": "http://www.php-fig.org/"
663 | }
664 | ],
665 | "description": "Common interface for HTTP messages",
666 | "homepage": "https://github.com/php-fig/http-message",
667 | "keywords": [
668 | "http",
669 | "http-message",
670 | "psr",
671 | "psr-7",
672 | "request",
673 | "response"
674 | ],
675 | "time": "2016-08-06T14:39:51+00:00"
676 | },
677 | {
678 | "name": "psr/log",
679 | "version": "1.1.2",
680 | "source": {
681 | "type": "git",
682 | "url": "https://github.com/php-fig/log.git",
683 | "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
684 | },
685 | "dist": {
686 | "type": "zip",
687 | "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
688 | "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
689 | "shasum": ""
690 | },
691 | "require": {
692 | "php": ">=5.3.0"
693 | },
694 | "type": "library",
695 | "extra": {
696 | "branch-alias": {
697 | "dev-master": "1.1.x-dev"
698 | }
699 | },
700 | "autoload": {
701 | "psr-4": {
702 | "Psr\\Log\\": "Psr/Log/"
703 | }
704 | },
705 | "notification-url": "https://packagist.org/downloads/",
706 | "license": [
707 | "MIT"
708 | ],
709 | "authors": [
710 | {
711 | "name": "PHP-FIG",
712 | "homepage": "http://www.php-fig.org/"
713 | }
714 | ],
715 | "description": "Common interface for logging libraries",
716 | "homepage": "https://github.com/php-fig/log",
717 | "keywords": [
718 | "log",
719 | "psr",
720 | "psr-3"
721 | ],
722 | "time": "2019-11-01T11:05:21+00:00"
723 | },
724 | {
725 | "name": "ralouphie/getallheaders",
726 | "version": "3.0.3",
727 | "source": {
728 | "type": "git",
729 | "url": "https://github.com/ralouphie/getallheaders.git",
730 | "reference": "120b605dfeb996808c31b6477290a714d356e822"
731 | },
732 | "dist": {
733 | "type": "zip",
734 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
735 | "reference": "120b605dfeb996808c31b6477290a714d356e822",
736 | "shasum": ""
737 | },
738 | "require": {
739 | "php": ">=5.6"
740 | },
741 | "require-dev": {
742 | "php-coveralls/php-coveralls": "^2.1",
743 | "phpunit/phpunit": "^5 || ^6.5"
744 | },
745 | "type": "library",
746 | "autoload": {
747 | "files": [
748 | "src/getallheaders.php"
749 | ]
750 | },
751 | "notification-url": "https://packagist.org/downloads/",
752 | "license": [
753 | "MIT"
754 | ],
755 | "authors": [
756 | {
757 | "name": "Ralph Khattar",
758 | "email": "ralph.khattar@gmail.com"
759 | }
760 | ],
761 | "description": "A polyfill for getallheaders.",
762 | "time": "2019-03-08T08:55:37+00:00"
763 | },
764 | {
765 | "name": "react/cache",
766 | "version": "v1.0.0",
767 | "source": {
768 | "type": "git",
769 | "url": "https://github.com/reactphp/cache.git",
770 | "reference": "aa10d63a1b40a36a486bdf527f28bac607ee6466"
771 | },
772 | "dist": {
773 | "type": "zip",
774 | "url": "https://api.github.com/repos/reactphp/cache/zipball/aa10d63a1b40a36a486bdf527f28bac607ee6466",
775 | "reference": "aa10d63a1b40a36a486bdf527f28bac607ee6466",
776 | "shasum": ""
777 | },
778 | "require": {
779 | "php": ">=5.3.0",
780 | "react/promise": "~2.0|~1.1"
781 | },
782 | "require-dev": {
783 | "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
784 | },
785 | "type": "library",
786 | "autoload": {
787 | "psr-4": {
788 | "React\\Cache\\": "src/"
789 | }
790 | },
791 | "notification-url": "https://packagist.org/downloads/",
792 | "license": [
793 | "MIT"
794 | ],
795 | "description": "Async, Promise-based cache interface for ReactPHP",
796 | "keywords": [
797 | "cache",
798 | "caching",
799 | "promise",
800 | "reactphp"
801 | ],
802 | "time": "2019-07-11T13:45:28+00:00"
803 | },
804 | {
805 | "name": "react/dns",
806 | "version": "v0.4.19",
807 | "source": {
808 | "type": "git",
809 | "url": "https://github.com/reactphp/dns.git",
810 | "reference": "6852fb98e22d2e5bb35fe5aeeaa96551b120e7c9"
811 | },
812 | "dist": {
813 | "type": "zip",
814 | "url": "https://api.github.com/repos/reactphp/dns/zipball/6852fb98e22d2e5bb35fe5aeeaa96551b120e7c9",
815 | "reference": "6852fb98e22d2e5bb35fe5aeeaa96551b120e7c9",
816 | "shasum": ""
817 | },
818 | "require": {
819 | "php": ">=5.3.0",
820 | "react/cache": "^1.0 || ^0.6 || ^0.5",
821 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
822 | "react/promise": "^2.1 || ^1.2.1",
823 | "react/promise-timer": "^1.2",
824 | "react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4.5"
825 | },
826 | "require-dev": {
827 | "clue/block-react": "^1.2",
828 | "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"
829 | },
830 | "type": "library",
831 | "autoload": {
832 | "psr-4": {
833 | "React\\Dns\\": "src"
834 | }
835 | },
836 | "notification-url": "https://packagist.org/downloads/",
837 | "license": [
838 | "MIT"
839 | ],
840 | "description": "Async DNS resolver for ReactPHP",
841 | "keywords": [
842 | "async",
843 | "dns",
844 | "dns-resolver",
845 | "reactphp"
846 | ],
847 | "time": "2019-07-10T21:00:53+00:00"
848 | },
849 | {
850 | "name": "react/event-loop",
851 | "version": "v0.4.3",
852 | "source": {
853 | "type": "git",
854 | "url": "https://github.com/reactphp/event-loop.git",
855 | "reference": "8bde03488ee897dc6bb3d91e4e17c353f9c5252f"
856 | },
857 | "dist": {
858 | "type": "zip",
859 | "url": "https://api.github.com/repos/reactphp/event-loop/zipball/8bde03488ee897dc6bb3d91e4e17c353f9c5252f",
860 | "reference": "8bde03488ee897dc6bb3d91e4e17c353f9c5252f",
861 | "shasum": ""
862 | },
863 | "require": {
864 | "php": ">=5.4.0"
865 | },
866 | "require-dev": {
867 | "phpunit/phpunit": "~4.8"
868 | },
869 | "suggest": {
870 | "ext-event": "~1.0",
871 | "ext-libev": "*",
872 | "ext-libevent": ">=0.1.0"
873 | },
874 | "type": "library",
875 | "autoload": {
876 | "psr-4": {
877 | "React\\EventLoop\\": "src"
878 | }
879 | },
880 | "notification-url": "https://packagist.org/downloads/",
881 | "license": [
882 | "MIT"
883 | ],
884 | "description": "Event loop abstraction layer that libraries can use for evented I/O.",
885 | "keywords": [
886 | "asynchronous",
887 | "event-loop"
888 | ],
889 | "time": "2017-04-27T10:56:23+00:00"
890 | },
891 | {
892 | "name": "react/promise",
893 | "version": "v2.7.1",
894 | "source": {
895 | "type": "git",
896 | "url": "https://github.com/reactphp/promise.git",
897 | "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d"
898 | },
899 | "dist": {
900 | "type": "zip",
901 | "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d",
902 | "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d",
903 | "shasum": ""
904 | },
905 | "require": {
906 | "php": ">=5.4.0"
907 | },
908 | "require-dev": {
909 | "phpunit/phpunit": "~4.8"
910 | },
911 | "type": "library",
912 | "autoload": {
913 | "psr-4": {
914 | "React\\Promise\\": "src/"
915 | },
916 | "files": [
917 | "src/functions_include.php"
918 | ]
919 | },
920 | "notification-url": "https://packagist.org/downloads/",
921 | "license": [
922 | "MIT"
923 | ],
924 | "authors": [
925 | {
926 | "name": "Jan Sorgalla",
927 | "email": "jsorgalla@gmail.com"
928 | }
929 | ],
930 | "description": "A lightweight implementation of CommonJS Promises/A for PHP",
931 | "keywords": [
932 | "promise",
933 | "promises"
934 | ],
935 | "time": "2019-01-07T21:25:54+00:00"
936 | },
937 | {
938 | "name": "react/promise-timer",
939 | "version": "v1.5.1",
940 | "source": {
941 | "type": "git",
942 | "url": "https://github.com/reactphp/promise-timer.git",
943 | "reference": "35fb910604fd86b00023fc5cda477c8074ad0abc"
944 | },
945 | "dist": {
946 | "type": "zip",
947 | "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/35fb910604fd86b00023fc5cda477c8074ad0abc",
948 | "reference": "35fb910604fd86b00023fc5cda477c8074ad0abc",
949 | "shasum": ""
950 | },
951 | "require": {
952 | "php": ">=5.3",
953 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
954 | "react/promise": "^2.7.0 || ^1.2.1"
955 | },
956 | "require-dev": {
957 | "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
958 | },
959 | "type": "library",
960 | "autoload": {
961 | "psr-4": {
962 | "React\\Promise\\Timer\\": "src/"
963 | },
964 | "files": [
965 | "src/functions_include.php"
966 | ]
967 | },
968 | "notification-url": "https://packagist.org/downloads/",
969 | "license": [
970 | "MIT"
971 | ],
972 | "authors": [
973 | {
974 | "name": "Christian Lück",
975 | "email": "christian@lueck.tv"
976 | }
977 | ],
978 | "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
979 | "homepage": "https://github.com/reactphp/promise-timer",
980 | "keywords": [
981 | "async",
982 | "event-loop",
983 | "promise",
984 | "reactphp",
985 | "timeout",
986 | "timer"
987 | ],
988 | "time": "2019-03-27T18:10:32+00:00"
989 | },
990 | {
991 | "name": "react/socket",
992 | "version": "v0.8.12",
993 | "source": {
994 | "type": "git",
995 | "url": "https://github.com/reactphp/socket.git",
996 | "reference": "7f7e6c56ccda7418a1a264892a625f38a5bdee0c"
997 | },
998 | "dist": {
999 | "type": "zip",
1000 | "url": "https://api.github.com/repos/reactphp/socket/zipball/7f7e6c56ccda7418a1a264892a625f38a5bdee0c",
1001 | "reference": "7f7e6c56ccda7418a1a264892a625f38a5bdee0c",
1002 | "shasum": ""
1003 | },
1004 | "require": {
1005 | "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
1006 | "php": ">=5.3.0",
1007 | "react/dns": "^0.4.13",
1008 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
1009 | "react/promise": "^2.6.0 || ^1.2.1",
1010 | "react/promise-timer": "^1.4.0",
1011 | "react/stream": "^1.0 || ^0.7.1"
1012 | },
1013 | "require-dev": {
1014 | "clue/block-react": "^1.2",
1015 | "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
1016 | },
1017 | "type": "library",
1018 | "autoload": {
1019 | "psr-4": {
1020 | "React\\Socket\\": "src"
1021 | }
1022 | },
1023 | "notification-url": "https://packagist.org/downloads/",
1024 | "license": [
1025 | "MIT"
1026 | ],
1027 | "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
1028 | "keywords": [
1029 | "Connection",
1030 | "Socket",
1031 | "async",
1032 | "reactphp",
1033 | "stream"
1034 | ],
1035 | "time": "2018-06-11T14:33:43+00:00"
1036 | },
1037 | {
1038 | "name": "react/stream",
1039 | "version": "v1.1.0",
1040 | "source": {
1041 | "type": "git",
1042 | "url": "https://github.com/reactphp/stream.git",
1043 | "reference": "50426855f7a77ddf43b9266c22320df5bf6c6ce6"
1044 | },
1045 | "dist": {
1046 | "type": "zip",
1047 | "url": "https://api.github.com/repos/reactphp/stream/zipball/50426855f7a77ddf43b9266c22320df5bf6c6ce6",
1048 | "reference": "50426855f7a77ddf43b9266c22320df5bf6c6ce6",
1049 | "shasum": ""
1050 | },
1051 | "require": {
1052 | "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
1053 | "php": ">=5.3.8",
1054 | "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5"
1055 | },
1056 | "require-dev": {
1057 | "clue/stream-filter": "~1.2",
1058 | "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
1059 | },
1060 | "type": "library",
1061 | "autoload": {
1062 | "psr-4": {
1063 | "React\\Stream\\": "src"
1064 | }
1065 | },
1066 | "notification-url": "https://packagist.org/downloads/",
1067 | "license": [
1068 | "MIT"
1069 | ],
1070 | "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
1071 | "keywords": [
1072 | "event-driven",
1073 | "io",
1074 | "non-blocking",
1075 | "pipe",
1076 | "reactphp",
1077 | "readable",
1078 | "stream",
1079 | "writable"
1080 | ],
1081 | "time": "2019-01-01T16:15:09+00:00"
1082 | },
1083 | {
1084 | "name": "ringcentral/psr7",
1085 | "version": "1.2.2",
1086 | "source": {
1087 | "type": "git",
1088 | "url": "https://github.com/ringcentral/psr7.git",
1089 | "reference": "dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c"
1090 | },
1091 | "dist": {
1092 | "type": "zip",
1093 | "url": "https://api.github.com/repos/ringcentral/psr7/zipball/dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c",
1094 | "reference": "dcd84bbb49b96c616d1dcc8bfb9bef3f2cd53d1c",
1095 | "shasum": ""
1096 | },
1097 | "require": {
1098 | "php": ">=5.3",
1099 | "psr/http-message": "~1.0"
1100 | },
1101 | "provide": {
1102 | "psr/http-message-implementation": "1.0"
1103 | },
1104 | "require-dev": {
1105 | "phpunit/phpunit": "~4.0"
1106 | },
1107 | "type": "library",
1108 | "extra": {
1109 | "branch-alias": {
1110 | "dev-master": "1.0-dev"
1111 | }
1112 | },
1113 | "autoload": {
1114 | "psr-4": {
1115 | "RingCentral\\Psr7\\": "src/"
1116 | },
1117 | "files": [
1118 | "src/functions_include.php"
1119 | ]
1120 | },
1121 | "notification-url": "https://packagist.org/downloads/",
1122 | "license": [
1123 | "MIT"
1124 | ],
1125 | "authors": [
1126 | {
1127 | "name": "Michael Dowling",
1128 | "email": "mtdowling@gmail.com",
1129 | "homepage": "https://github.com/mtdowling"
1130 | }
1131 | ],
1132 | "description": "PSR-7 message implementation",
1133 | "keywords": [
1134 | "http",
1135 | "message",
1136 | "stream",
1137 | "uri"
1138 | ],
1139 | "time": "2018-01-15T21:00:49+00:00"
1140 | },
1141 | {
1142 | "name": "symfony/process",
1143 | "version": "v4.4.2",
1144 | "source": {
1145 | "type": "git",
1146 | "url": "https://github.com/symfony/process.git",
1147 | "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b"
1148 | },
1149 | "dist": {
1150 | "type": "zip",
1151 | "url": "https://api.github.com/repos/symfony/process/zipball/b84501ad50adb72a94fb460a5b5c91f693e99c9b",
1152 | "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b",
1153 | "shasum": ""
1154 | },
1155 | "require": {
1156 | "php": "^7.1.3"
1157 | },
1158 | "type": "library",
1159 | "extra": {
1160 | "branch-alias": {
1161 | "dev-master": "4.4-dev"
1162 | }
1163 | },
1164 | "autoload": {
1165 | "psr-4": {
1166 | "Symfony\\Component\\Process\\": ""
1167 | },
1168 | "exclude-from-classmap": [
1169 | "/Tests/"
1170 | ]
1171 | },
1172 | "notification-url": "https://packagist.org/downloads/",
1173 | "license": [
1174 | "MIT"
1175 | ],
1176 | "authors": [
1177 | {
1178 | "name": "Fabien Potencier",
1179 | "email": "fabien@symfony.com"
1180 | },
1181 | {
1182 | "name": "Symfony Community",
1183 | "homepage": "https://symfony.com/contributors"
1184 | }
1185 | ],
1186 | "description": "Symfony Process Component",
1187 | "homepage": "https://symfony.com",
1188 | "time": "2019-12-06T10:06:46+00:00"
1189 | },
1190 | {
1191 | "name": "valga/fbns-react",
1192 | "version": "0.1.8",
1193 | "source": {
1194 | "type": "git",
1195 | "url": "https://github.com/valga/fbns-react.git",
1196 | "reference": "4bbf513a8ffed7e0c9ca10776033d34515bb8b37"
1197 | },
1198 | "dist": {
1199 | "type": "zip",
1200 | "url": "https://api.github.com/repos/valga/fbns-react/zipball/4bbf513a8ffed7e0c9ca10776033d34515bb8b37",
1201 | "reference": "4bbf513a8ffed7e0c9ca10776033d34515bb8b37",
1202 | "shasum": ""
1203 | },
1204 | "require": {
1205 | "binsoul/net-mqtt": "~0.2",
1206 | "evenement/evenement": "~2.0|~3.0",
1207 | "ext-mbstring": "*",
1208 | "ext-zlib": "*",
1209 | "php": "~5.6|~7.0",
1210 | "psr/log": "~1.0",
1211 | "react/event-loop": "^0.4.3",
1212 | "react/promise": "~2.0",
1213 | "react/socket": "~0.8"
1214 | },
1215 | "require-dev": {
1216 | "friendsofphp/php-cs-fixer": "~2.4",
1217 | "monolog/monolog": "~1.23"
1218 | },
1219 | "suggest": {
1220 | "ext-event": "For more efficient event loop implementation.",
1221 | "ext-gmp": "To be able to run this code on x86 PHP builds."
1222 | },
1223 | "type": "library",
1224 | "autoload": {
1225 | "psr-4": {
1226 | "Fbns\\Client\\": "src/"
1227 | }
1228 | },
1229 | "notification-url": "https://packagist.org/downloads/",
1230 | "license": [
1231 | "MIT"
1232 | ],
1233 | "authors": [
1234 | {
1235 | "name": "Abyr Valg",
1236 | "email": "valga.github@abyrga.ru"
1237 | }
1238 | ],
1239 | "description": "A PHP client for the FBNS built on top of ReactPHP",
1240 | "keywords": [
1241 | "FBNS",
1242 | "client",
1243 | "php"
1244 | ],
1245 | "time": "2017-10-09T07:54:13+00:00"
1246 | },
1247 | {
1248 | "name": "winbox/args",
1249 | "version": "v1.0.0",
1250 | "source": {
1251 | "type": "git",
1252 | "url": "https://github.com/johnstevenson/winbox-args.git",
1253 | "reference": "389a9ed9410e6f422b1031b3e55a402ace716296"
1254 | },
1255 | "dist": {
1256 | "type": "zip",
1257 | "url": "https://api.github.com/repos/johnstevenson/winbox-args/zipball/389a9ed9410e6f422b1031b3e55a402ace716296",
1258 | "reference": "389a9ed9410e6f422b1031b3e55a402ace716296",
1259 | "shasum": ""
1260 | },
1261 | "require": {
1262 | "php": ">=5.3.3"
1263 | },
1264 | "type": "library",
1265 | "autoload": {
1266 | "psr-4": {
1267 | "Winbox\\": "src/"
1268 | }
1269 | },
1270 | "notification-url": "https://packagist.org/downloads/",
1271 | "license": [
1272 | "MIT"
1273 | ],
1274 | "authors": [
1275 | {
1276 | "name": "John Stevenson",
1277 | "email": "john-stevenson@blueyonder.co.uk"
1278 | }
1279 | ],
1280 | "description": "Windows command-line formatter",
1281 | "homepage": "http://github.com/johnstevenson/winbox-args",
1282 | "keywords": [
1283 | "Escape",
1284 | "command",
1285 | "windows"
1286 | ],
1287 | "time": "2016-08-04T14:30:27+00:00"
1288 | }
1289 | ],
1290 | "packages-dev": [
1291 | {
1292 | "name": "kint-php/kint",
1293 | "version": "3.3",
1294 | "source": {
1295 | "type": "git",
1296 | "url": "https://github.com/kint-php/kint.git",
1297 | "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
1298 | },
1299 | "dist": {
1300 | "type": "zip",
1301 | "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
1302 | "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
1303 | "shasum": ""
1304 | },
1305 | "require": {
1306 | "php": ">=5.3.6"
1307 | },
1308 | "require-dev": {
1309 | "friendsofphp/php-cs-fixer": "^2.0",
1310 | "phpunit/phpunit": "^4.0",
1311 | "seld/phar-utils": "^1.0",
1312 | "symfony/finder": "^2.0 || ^3.0 || ^4.0",
1313 | "vimeo/psalm": "^3.0"
1314 | },
1315 | "suggest": {
1316 | "ext-ctype": "Simple data type tests",
1317 | "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
1318 | "ext-mbstring": "Provides string encoding detection",
1319 | "kint-php/kint-js": "Provides a simplified dump to console.log()",
1320 | "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
1321 | "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
1322 | "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
1323 | "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
1324 | },
1325 | "type": "library",
1326 | "autoload": {
1327 | "files": [
1328 | "init.php"
1329 | ],
1330 | "psr-4": {
1331 | "Kint\\": "src/"
1332 | }
1333 | },
1334 | "notification-url": "https://packagist.org/downloads/",
1335 | "license": [
1336 | "MIT"
1337 | ],
1338 | "authors": [
1339 | {
1340 | "name": "Jonathan Vollebregt",
1341 | "homepage": "https://github.com/jnvsor"
1342 | },
1343 | {
1344 | "name": "Rokas Šleinius",
1345 | "homepage": "https://github.com/raveren"
1346 | },
1347 | {
1348 | "name": "Contributors",
1349 | "homepage": "https://github.com/kint-php/kint/graphs/contributors"
1350 | }
1351 | ],
1352 | "description": "Kint - debugging tool for PHP developers",
1353 | "homepage": "https://kint-php.github.io/kint/",
1354 | "keywords": [
1355 | "debug",
1356 | "kint",
1357 | "php"
1358 | ],
1359 | "time": "2019-10-17T18:05:24+00:00"
1360 | }
1361 | ],
1362 | "aliases": [],
1363 | "minimum-stability": "stable",
1364 | "stability-flags": [],
1365 | "prefer-stable": false,
1366 | "prefer-lowest": false,
1367 | "platform": [],
1368 | "platform-dev": []
1369 | }
1370 |
--------------------------------------------------------------------------------