scoutnet / sn-webservice
This class is needed to comunicate with the scoutnet.de server.
2.0.1
2024-06-30 20:16 UTC
Requires
- ext-openssl: *
Requires (Dev)
- ext-curl: *
- phpspec/prophecy: ~1.18
- phpspec/prophecy-phpunit: ~2.1
- phpstan/phpstan: ^1.7.0
- phpstan/phpstan-phpunit: ^1.1.1
- phpunit/phpunit: ^10.5
- roave/security-advisories: dev-latest
- typo3/coding-standards: ^0.7.1
This package is auto-updated.
Last update: 2024-10-30 20:56:20 UTC
README
ScoutNet Api Webservice
With this lib you can read and write ScoutNet Kalender Events and read ScoutNet Index Elements. It is used by different Plugins for Typo3, Joomla, Wordpress and MediaWiki.
Install
composer require "scoutnet/sn-webservice:^2.0"
Use API
ReadApi:
// load Autoloader from composer require_once('vendor/autoload.php'); // reading Elements from the API with this code: $scoutNetApi = new \ScoutNet\Api\ScoutnetApi(); $events = $scoutNetApi->get_events_for_global_id_with_filter(4, ['limit' => 3]); print_r($events);