A simple php bag for storing data

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/mamadou-aly-sy/bag

1.0.0 2022-05-01 10:47 UTC

This package is auto-updated.

Last update: 2025-09-29 03:06:10 UTC


README

A simple php parameter bag

Usage

<?php

require_once './vendor/autoload.php';

$bag = new \MamadouAlySy\ParameterBag();

$bag->add('name', 'Mamadou');
$bag->has('name') // return true
count($bag) // return 1;