PHPackages                             atlanta/helpers - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. atlanta/helpers

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

atlanta/helpers
===============

generic helpers

v1.0.24(5mo ago)0147MITPHPPHP ^8.1|^8.2|^8.3

Since Feb 27Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/liamka/laravel-atlanta-helpers)[ Packagist](https://packagist.org/packages/atlanta/helpers)[ Docs](https://github.com/liamka/laravel-atlanta-helpers)[ RSS](/packages/atlanta-helpers/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (6)Versions (25)Used By (0)

Helpers
=======

[](#helpers)

This is a helpers package that provides some built in helpers, and also provides an Artisan generator to quickly create your own custom helpers.

Install
-------

[](#install)

Via Composer

```
$ composer require atlanta/helpers
```

Setup
-----

[](#setup)

Add the service provider to the providers array in `config/app.php`.

```
'providers' => [
    Atlanta\Helpers\HelperServiceProvider::class,
];
```

If you are using Laravel's automatic package discovery, you can skip this step.

Publishing
----------

[](#publishing)

You can publish everything at once

```
php artisan vendor:publish --provider="Atlanta\Helpers\HelperServiceProvider"
```

or you can publish groups individually.

```
php artisan vendor:publish --provider="Atlanta\Helpers\HelperServiceProvider" --tag="config"
```

Usage
-----

[](#usage)

This package comes with some built in helpers that you can choose to use or not. By default all of these helpers are inactive for your application. To adjust which helpers are active and which are inactive, open `config/helpers.php` and find the `package_helpers` option. Add any helpers you wish to activate to this key. Check the source code to see what functions are included in each helper and what each does.

You can also create your own custom helpers for inclusion in your application. An Artisan generator helps you quickly make new helpers for your application.

```
php artisan make:helper MyHelper
```

Your custom helper will be placed in `app/Helpers`, unless you override the default directory in your configuration.

By default, the service provider uses the `glob` function to automatically require any PHP files in the 'Helpers' directory. If you prefer a mapper based approach, you may edit the `custom_helpers` in the configuration file, and include the file name of any helpers in your custom directory you wish to activate. Within the new helper, define your own custom functions that will be available throughout your application.

```
if (!function_exists('hello')) {

    /**
     * say hello
     *
     * @param string $name
     * @return string
     */
    function hello($name)
    {
        return 'Hello ' . $name . '!';
    }
}
```

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance72

Regular maintenance activity

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity70

Established project with proven stability

 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

Every ~46 days

Recently: every ~265 days

Total

24

Last Release

156d ago

PHP version history (2 changes)v1.0.0PHP ^7.2|^8.0

v1.0.23PHP ^8.1|^8.2|^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/e92f4dc4a0d3a04ca4fc55edf27b2f560aa4b182679698f903fc79e859221ba1?d=identicon)[liamka](/maintainers/liamka)

---

Top Contributors

[![liamka](https://avatars.githubusercontent.com/u/11809?v=4)](https://github.com/liamka "liamka (26 commits)")

---

Tags

helpers

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/atlanta-helpers/health.svg)

```
[![Health](https://phpackages.com/badges/atlanta-helpers/health.svg)](https://phpackages.com/packages/atlanta-helpers)
```

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M188](/packages/laravel-ai)[laravel/sail

Docker files for running a basic Laravel application.

1.9k205.7M1.3k](/packages/laravel-sail)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

725172.4k14](/packages/tallstackui-tallstackui)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M145](/packages/laravel-mcp)

PHPackages © 2026

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