PHPackages                             dronki/glesys-laravel - 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. dronki/glesys-laravel

ActiveLibrary[API Development](/categories/api)

dronki/glesys-laravel
=====================

Laravel package for integrating GleSYS-api

02PHP

Since Mar 9Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Dronki/GleSYS-laravel)[ Packagist](https://packagist.org/packages/dronki/glesys-laravel)[ RSS](/packages/dronki-glesys-laravel/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

GleSYS-API wrapper for Laravel
==============================

[](#glesys-api-wrapper-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/67787802ddacc376dfc016160d0c605e233260c2ca58865b750c03387844ba5b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64726f6e6b692f676c657379732d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dronki/glesys-laravel)[![Total Downloads](https://camo.githubusercontent.com/a4fc0a682f39452eb6e72c4ec6d2d8922599597531754fc6cfd373b0faffb055/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64726f6e6b692f676c657379732d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dronki/glesys-laravel)

A simple wrapper for the GleSYS API.

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

[](#installation)

You can install the package via composer:

```
composer require dronki/glesys-laravel
php artisan vendor:publish --provider="Dronki\GlesysLaravel\GlesysLaravelServiceProvider"
```

Register the service-provider in your `config/app.php` file:

```
'providers' => [
    ...
    Dronki\GlesysLaravel\GlesysLaravelServiceProvider::class,
],
```

Usage
-----

[](#usage)

The wrapper is written in such a way that it can be used in any Laravel application.
By using the facade, you can access the API in a simple way:

```
GleSYS::punyEncode( 'www.example.com' );
```

Available methos
----------------

[](#available-methos)

```
#General
GleSYS::getResponse(); // Gets the response from the last request
GleSYS::punyEncode( $string ); // Puny-encodes a string
GleSYS::punyDecode( $string ); // Puny-decodes a string

# Email
GleSYS::emailOverview(); // Gets a list of all email-accounts and aliases
GleSYS::emailsByDomain( $domain, $filter = '', $objects = false ); // Gets a list of all email-accounts and aliases for a domain, optionally filtered by $filter, and optionally return objects instead of arrays
GleSYS::emailCreateAccount( $email, $password, $settings = [] ); // Creates a new email-account
GleSYS::emailEditAccount( $email, $settings = [] ); // Edits an existing email-account
GleSYS::emailDeleteAccount( $email ); // Deletes an email-account
GleSYS::emailAccountQuota( $email ); // Gets the quota of an email-account

# Aliases for email-account
GleSYS::emailCreateAlias( $alias, $recipient ); // Creates a new alias for an email-account
GleSYS::emailEditAlias( $alias, $recipient ); // Edits an existing alias for an email-account
GleSYS::emailDeleteAlias( $alias ); // Deletes an alias for an email-account
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

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

Credits
-------

[](#credits)

- [Rickard Ahlstedt](https://github.com/dronki)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

Donations
---------

[](#donations)

If you like this package and would like to support my work, consider donating.

[![Donate to Dronki](https://camo.githubusercontent.com/538b7224b22301e34e4fbdcb20c2936c5a35f32695f843c2ca4570d44bf2e9cf/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d70617970616c2d626c75652e7376673f7374796c653d666c61742d737175617265)](https://www.paypal.me/dronki)[![Donate with crypto](https://camo.githubusercontent.com/cf87bb16c3765923242930f2d19e49100686077f4a2b3ff1e09dc16c82e39356/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d63727970746f2d79656c6c6f77)](https://ahlstedt.xyz/donations/)

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity27

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://avatars.githubusercontent.com/u/188674987?v=4)[Dronki](/maintainers/Dronki)[@Dronki](https://github.com/Dronki)

---

Top Contributors

[![RickardAhlstedt](https://avatars.githubusercontent.com/u/1244969?v=4)](https://github.com/RickardAhlstedt "RickardAhlstedt (7 commits)")

---

Tags

apiglesysglesys-apilaravel-package

### Embed Badge

![Health badge](/badges/dronki-glesys-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/dronki-glesys-laravel/health.svg)](https://phpackages.com/packages/dronki-glesys-laravel)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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