Skip to content

railken/bag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bag

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.

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages