1. Go to this page and download the library: Download minime/quantum library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
minime / quantum example snippets
// Quantum Object looks more expressive when aliased
use Minime\Quantum\Object as Container;
// Quantum needs a callable to produce new states, so let's create one
$Container = (new Container(function(){ return new SomeFancyContainer(); }))
// this is the default environment
->mount('default')->interact(function($container){
$container->shared('Database', new Database(
[
'driver' => 'postgre',
'host' => 'localhost'
]
));
/*...*/
})
// this will be our test/cli environment
->extend('default', 'test')->interact(function($container){
$container->get('Database')->config(
[
'database' => 'app_unit_test',
'user' => 'foo',
'password' => 'bar'
]
);
})
// this will be our development environment
->extend('default', 'development')->interact(function($container){
$container->get('Database')->config(
[
'database' => 'app_development',
'user' => 'bar',
'password' => 'baz'
]
);
})
// production!
->extend('default', 'production')->interact(function($container){
$container->get('Database')->config(
[
'host' => 'my.production.ip',
'database' => 'app',
'user' => 'app',
'password' => 'P@sW04d'
]
);
});
// get test container
$TestContainer = $Container->mount('test')->expose();
// get development container
$DevelopmentContainer = $Container->mount('development')->expose();
// get production container
$ProductionContainer = $Container->mount('production')->expose();