say yes to pecl
[m6w6/seekat] / README.md
1 # seekat
2
3 Fluent Github API access with PHP-7 and [ext-http](https://github.com/m6w6/ext-http).
4
5 ```php
6 <?php
7
8 use seekat\API;
9
10 (new API)->repos->m6w6->seekat->readme->as("html")->then(function($readme) {
11 echo $readme;
12 }, function($error) {
13 echo $error;
14 });
15
16 $api->send();
17 ```
18
19 > ***Note:*** WIP
20
21
22 ## Installing
23
24 ### Composer
25
26 composer require m6w6/seekat
27
28 ## ChangeLog
29
30 A comprehensive list of changes can be obtained from the
31 [releases overview](./releases).
32
33 ## License
34
35 seekat is licensed under the 2-Clause-BSD license, which can be found in
36 the accompanying [LICENSE](./LICENSE) file.
37
38 ## Contributing
39
40 All forms of contribution are welcome! Please see the bundled
41 [CONTRIBUTING](./CONTRIBUTING.md) note for the general principles followed.
42
43 The list of past and current contributors is maintained in [THANKS](./THANKS).