railken / bag
Installs: 75 769
Dependents: 26
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
Requires (Dev)
- phpstan/phpstan: ^1.10
- phpunit/phpunit: *
README
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.