From e2f2ee4be080733847a498937974d49d705fe354 Mon Sep 17 00:00:00 2001 From: Jonathan Martz Date: Sun, 12 Jan 2025 13:09:15 +0100 Subject: [PATCH] update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 00e0c7d..347289c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ ##### This Repository are in active Development *** +*** +### Gitlab is the one for Packagist, but they should both be up to Date. +##### Github: https://github.com/jonathan-martz/pocketbase-php-sdk/ +##### Gitlab: https://gitlab.jonathan-martz.de/softwareentwicklung/pocketbase-php-sdk +*** + ``` bash composer require jonathan-martz/pocketbase-php-sdk ``` @@ -11,8 +17,8 @@ composer require jonathan-martz/pocketbase-php-sdk ``` php // Example init and use use \Pb\Client as pb; -$pb = new pb('https://backend-shop.mkay.dev'); -var_dump($pb->collection('countries')->getList()); +$pb = new pb('https://admin.pocketbase.dev'); +var_dump($pb->collection('users')->getList()); ``` ***