An open API service indexing awesome lists of open source software.

https://github.com/wp-forge/container

A lightweight, PHP 7.0+ compatible, PSR-11 dependency injection container.
https://github.com/wp-forge/container

Last synced: about 1 year ago
JSON representation

A lightweight, PHP 7.0+ compatible, PSR-11 dependency injection container.

Awesome Lists containing this project

README

          

# Container

A lightweight, PHP 8.0+ compatible, PSR-11 dependency injection container.

## Usage

Basic manipulation of items.

```php
set('email', 'webmaster@site.com');

// Check if a value exists
$exists = $container->has('email');

// Get a value
$value = $container->get('email');

// Delete a value
$container->delete('email');
```

Basic manipulation of items using array syntax.

```php
set( 'session', $container->factory( function( Container $c ) {
return new Session( $c->get('session_id') );
} ) );

// Get a factory instance.
$factory = $container->get( 'session' );

// Check if an item is a factory
$isFactory = $container->isFactory( $factory );
```

Register a service. Services return the same class instance every time you fetch them.

```php
set( 'session', $container->service( function( Container $c ) {
return new Session( $c->get('session_id') );
} ) );

// Get a service instance.
$service = $container->get( 'session' );

// Check if an item is a service
$isService = $container->isService( $service );
```

Register a computed value callback.

```php
'John',
'last_name' => 'Doe',
] );

$container->set( 'full_name', $container->computed( function ( Container $container ) {
return implode( ' ', array_filter( [
$container->has( 'first_name' ) ? $container->get( 'first_name' ) : '',
$container->has( 'last_name' ) ? $container->get( 'last_name' ) : '',
] ) );
} ) );

$full_name = $container->get( 'full_name' );
```

Extend a previously registered factory or service.

```php
extend( 'session', function( $instance, Closure $c ) {

$instance->setShoppingCart( $c->get('shopping_cart') );

return $instance;
} );

```