scoutnet / sn-webservice
此类用于与scoutnet.de服务器进行通信。
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-08-30 20:41:45 UTC
README
ScoutNet Api Webservice
使用此库,您可以读取和写入ScoutNet日历事件,并读取ScoutNet索引元素。它被不同插件用于Typo3、Joomla、Wordpress和MediaWiki。
安装
composer require "scoutnet/sn-webservice:^2.0"
使用API
读取API
// 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);