victor-drom-test / comment-service-client
Client for example.com
1.0.3
2021-07-18 04:15 UTC
Requires
- php: >=7.1
- php-curl-class/php-curl-class: ^9.2
Requires (Dev)
- phpunit/phpunit: ^9.3.3
This package is auto-updated.
Last update: 2025-08-29 03:15:58 UTC
README
- Установка:
composer require victor-drom-test/comment-service-client
Запуск тестов
.\vendor\bin\phpunit tests
Пример использования :
<?php require_once __DIR__ . '/vendor/autoload.php';
/ get comments / $client = new Victor\clients\Example(); $result = $client->getComment(); var_dump($result);
/ Create comment / $result = $client->addComment(new Victor\models\Comment('NameComment')); var_dump($result);