railken/bag

There is no license information available for the latest version (v2.0.0) of this package.

v2.0.0 2023-12-29 16:35 UTC

This package is auto-updated.

Last update: 2024-04-30 00:28:26 UTC


README

Build Status Maintainability Test Coverage Style CI License Latest stable PHP

Inspired by ParameterBag I decided to create a new repository that contains a similiar class with a few adjustments.

Requirements

PHP 8.1 or later.

Composer

You can install it via Composer by typing the following command:

composer require railken/bag

Getting Started

Simple usage looks like:

use Railken\Bag;

# Initialization
$bag = new Bag();
$bag = new Bag(['foo' => '1']);

# Setting
$bag->set('foo', 1)->set('fee', 2);

# Getting
$bag->foo; #1
$bag->get('bar', 3); #3
 

License

Open-source software licensed under the MIT license.