konfig/automation-test-with-submodules-php-sdk

SDKs (no submodules) to test automation workflows.

v1.0.5 2024-07-26 06:26 UTC

This package is auto-updated.

Last update: 2024-09-26 07:04:59 UTC


README

SDKs (no submodules) to test automation workflows.

Packagist

Table of Contents

Installation & Usage

Requirements

This library requires PHP ^8.0

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/konfig-dev/automation-test-submodule-php.git"
    }
  ],
  "require": {
    "konfig/automation-test-submodule-php": "1.0.5"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/automation-test-with-submodules-php-sdk/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$automationtestwithsubmodules = new \AutomationTestWithSubmodules\Client(
);

$result = $automationtestwithsubmodules->greetings->hello();

Reference

automationtestwithsubmodules.greetings.hello

Get a simple greeting!!!

🛠️ Usage

$result = $automationtestwithsubmodules->greetings->hello();

🔄 Return

HelloResponse

🌐 Endpoint

/hello GET

🔙 Back to Table of Contents

Author

This PHP package is automatically generated by Konfig