PHPackages                             byjg/singleton-pattern - 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. byjg/singleton-pattern

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

byjg/singleton-pattern
======================

A lightweight PHP implementation of the Design Pattern Singleton using trait.

6.0.0(5mo ago)1055.4k↓45.3%32MITPHPPHP &gt;=8.3 &lt;8.6CI passing

Since Jul 13Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/byjg/php-singleton-pattern)[ Packagist](https://packagist.org/packages/byjg/singleton-pattern)[ GitHub Sponsors](https://github.com/byjg)[ RSS](/packages/byjg-singleton-pattern/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (2)Versions (9)Used By (2)

   sidebar\_key singleton-pattern   tags    php

    Singleton Pattern
=================

[](#singleton-pattern)

A lightweight PHP implementation of the Design Pattern Singleton using trait. Just one class and no dependencies.

[![Sponsor](https://camo.githubusercontent.com/fab14b7f7f475072ada0473f193d6f322561fd4a2958e0cc89910d053347cf27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53706f6e736f722d2532336561346161613f6c6f676f3d67697468756273706f6e736f7273266c6f676f436f6c6f723d7768697465266c6162656c436f6c6f723d306431313137)](https://github.com/sponsors/byjg)[![Build Status](https://github.com/byjg/php-singleton-pattern/actions/workflows/phpunit.yml/badge.svg?branch=master)](https://github.com/byjg/php-singleton-pattern/actions/workflows/phpunit.yml)[![Opensource ByJG](https://camo.githubusercontent.com/425c1bbccc0f292bf4d20569ae74a6b2e384fd648f1af8911bc61de9a8dcfc0b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6f70656e736f757263652d62796a672d737563636573732e737667)](http://opensource.byjg.com)[![GitHub source](https://camo.githubusercontent.com/88e61eb211719144efdd570290a0456b6e13099c2df8d973f1bb43fe33bf0039/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4769746875622d736f757263652d696e666f726d6174696f6e616c3f6c6f676f3d676974687562)](https://github.com/byjg/php-singleton-pattern/)[![GitHub license](https://camo.githubusercontent.com/da663bc695859ee101faa252f01c5838a83241445d48069605a10e816befda68/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f62796a672f7068702d73696e676c65746f6e2d7061747465726e2e737667)](https://opensource.byjg.com/opensource/licensing.html)[![GitHub release](https://camo.githubusercontent.com/fe4d740f0bb25ee4ed4e483b12990e612abbfc5b9665c4e2db661cb0d1286213/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f62796a672f7068702d73696e676c65746f6e2d7061747465726e2e737667)](https://github.com/byjg/php-singleton-pattern/releases/)

Documentation
-------------

[](#documentation)

- [Getting Started](docs/getting-started.md) - Installation and requirements
- [Creating a Singleton Class](docs/creating-singleton.md) - How to implement the pattern
- [Using Your Singleton](docs/using-singleton.md) - Working with singleton instances
- [How It Works](docs/how-it-works.md) - Implementation details
- [API Reference](docs/api-reference.md) - Complete API documentation

Requirements
------------

[](#requirements)

PHP 8.3 or higher

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

[](#installation)

```
composer require "byjg/singleton-pattern"

```

Creating a Singleton Class
--------------------------

[](#creating-a-singleton-class)

```
