PHPackages                             softgarden/php-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. softgarden/php-sdk

AbandonedArchivedLibrary

softgarden/php-sdk
==================

softgarden PHP SDK

020.0k—0%11PHP

Since Apr 24Pushed 6y agoCompare

[ Source](https://github.com/softgarden-developers/softgarden-php-sdk)[ Packagist](https://packagist.org/packages/softgarden/php-sdk)[ RSS](/packages/softgarden-php-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (1)

softgarden PHP SDK
==================

[](#softgarden-php-sdk)

The [softgarden-cloud API](http://dev.softgarden.de/) is a set of APIs that connect your app to the softgarden cloud ATS.

This repository contains the open source PHP SDK that allows you to access softgarden cloud API from your PHP app. Except as otherwise noted, the softgarden PHP SDK is licensed under the Apache Licence, Version 2.0 ().

Usage
-----

[](#usage)

The minimal you'll need to have is:

```
require 'softgarden-php-sdk/src/Softgarden.php';

$softgarden = new Softgarden(array(
  'appId'  => 'YOUR_APP_ID',
  'secret' => 'YOUR_APP_SECRET' // only required if your app has an secret
));

// call an API endpoint
$response = $softgarden->get('v2/frontend/me');

```

To make [API](http://dev.softgarden.de) calls, the general pattern is:

```
  try {
    // make the api call, generic
    $response = $softgarden->api('v2/frontend/me');

    // make the api call, get
    $response = $softgarden->get('v2/frontend/me', $optionalQueryParamsAsArray);

    // make the api call, post
    $response = $softgarden->post('v2/frontend/me', $optionalPostParamsAsArray);

    // make the api call, put
    $response = $softgarden->put('v2/frontend/me', $optionalPostParamsAsArray);

    // make the api call, delete
    $response = $softgarden->delete('v2/frontend/me', $optionalQueryParamsAsArray);

  } catch (SoftgardenApiException $e) {
    error_log($e);
  }
}

```

Tests
-----

[](#tests)

Currently, there is no test coverage, as we just started to develop this sdk.

Contributing
============

[](#contributing)

Currently, there is no way to externally copntribute to our sdk.

Report Issues/Bugs
==================

[](#report-issuesbugs)

[Bugs](https://dev.softgarden.de)

[Questions](http://dev.softgarden.de)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/76d4fd438f75fe9bd7e30afd16974a7297ac5afb88f99494e19b046eb0ffa6d1?d=identicon)[schueffi](/maintainers/schueffi)

---

Top Contributors

[![schueffi](https://avatars.githubusercontent.com/u/2255174?v=4)](https://github.com/schueffi "schueffi (8 commits)")

### Embed Badge

![Health badge](/badges/softgarden-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/softgarden-php-sdk/health.svg)](https://phpackages.com/packages/softgarden-php-sdk)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
