Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add AtpPublicClient main entry point

+17
+17
src/Client/Public/AtpPublicClient.php
··· 1 + <?php 2 + 3 + namespace SocialDept\AtpClient\Client\Public; 4 + 5 + class AtpPublicClient 6 + { 7 + public PublicClient $client; 8 + public BskyPublicClient $bsky; 9 + public AtprotoPublicClient $atproto; 10 + 11 + public function __construct(string $serviceUrl) 12 + { 13 + $this->client = new PublicClient($serviceUrl); 14 + $this->bsky = new BskyPublicClient($this); 15 + $this->atproto = new AtprotoPublicClient($this); 16 + } 17 + }