PHPackages                             angstrom/cyclos-api - 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. [API Development](/categories/api)
4. /
5. angstrom/cyclos-api

ActiveLibrary[API Development](/categories/api)

angstrom/cyclos-api
===================

Laravel package for interacting with Cyclos API

v1.0.0(1y ago)131MITPHPPHP ^8.0

Since Feb 2Pushed 1y ago2 watchersCompare

[ Source](https://github.com/robin-001/cyclos-api)[ Packagist](https://packagist.org/packages/angstrom/cyclos-api)[ RSS](/packages/angstrom-cyclos-api/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (2)Used By (0)

Cyclos API Laravel Package
==========================

[](#cyclos-api-laravel-package)

A Laravel package that provides a clean and intuitive way to interact with the Cyclos API.

Features
--------

[](#features)

- Full Cyclos API support
- Laravel integration
- Type-safe methods
- Comprehensive test coverage
- Easy configuration

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require angstrom/cyclos-api
```

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --provider="Angstrom\CyclosApi\CyclosApiServiceProvider"
```

Add the following environment variables to your `.env` file:

```
CYCLOS_API_URL=your-cyclos-api-url
CYCLOS_API_KEY=your-api-key
```

Usage
-----

[](#usage)

### Using the Facade

[](#using-the-facade)

```
use Angstrom\CyclosApi\Facades\CyclosApi;

// Authentication
$response = CyclosApi::login([
    'username' => 'user',
    'password' => 'password'
]);

// User Management
$users = CyclosApi::searchUsers([
    'keywords' => 'john',
    'groups' => ['customers']
]);

// Account Management
$balance = CyclosApi::getAccountStatus('account123');
$history = CyclosApi::getAccountHistory('account123', [
    'datePeriod' => ['begin' => '2023-01-01', 'end' => '2023-12-31']
]);

// Marketplace
$ads = CyclosApi::searchAdvertisements([
    'keywords' => 'electronics',
    'categories' => ['tech']
]);
```

### Using Dependency Injection

[](#using-dependency-injection)

```
use Angstrom\CyclosApi\CyclosApi;

class YourController extends Controller
{
    public function __construct(private CyclosApi $api)
    {
    }

    public function getUsers()
    {
        return $this->api->searchUsers([
            'status' => 'active'
        ]);
    }
}
```

Available Methods
-----------------

[](#available-methods)

The package includes comprehensive traits for different Cyclos functionalities:

- Authentication (login, logout, password management)
- User Management (search, create, update, delete users)
- Account Management (balances, history, transfers)
- Marketplace Management (advertisements, favorites)
- Payment Management
- Transaction Management
- Message Management
- And more...

Testing
-------

[](#testing)

```
composer test
```

Security
--------

[](#security)

If you discover any security-related issues, please email  instead of using the issue tracker.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance42

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

471d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8d1cae7b564963d2d43c24ceb54facfca1c322bd6aaa6c07ec43f298e591a1a9?d=identicon)[rokello](/maintainers/rokello)

---

Top Contributors

[![robin-001](https://avatars.githubusercontent.com/u/1793066?v=4)](https://github.com/robin-001 "robin-001 (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/angstrom-cyclos-api/health.svg)

```
[![Health](https://phpackages.com/badges/angstrom-cyclos-api/health.svg)](https://phpackages.com/packages/angstrom-cyclos-api)
```

###  Alternatives

[skagarwal/google-places-api

Google Places Api

1913.0M8](/packages/skagarwal-google-places-api)[dcblogdev/laravel-microsoft-graph

A Laravel Microsoft Graph API (Office365) package

168285.5k1](/packages/dcblogdev-laravel-microsoft-graph)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1344.8k1](/packages/jasara-php-amzn-selling-partner-api)[grantholle/powerschool-api

A Laravel package to make interacting with PowerSchool less painful.

1715.6k1](/packages/grantholle-powerschool-api)

PHPackages © 2026

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