1. Go to this page and download the library: Download gsteel/dot 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/ */
use GSteel\Dot;
$config = $container->get('config');
$connectionParams = $config['doctrine']['connection']['params'] ?? [];
// 👆 Psalm has no idea what that is.
// Alternatively…
$params = [
'host' => Dot::stringDefault('doctrine.connection.params.host', $config, 'localhost'),
'port' => Dot::integerDefault('doctrine.connection.params.port', $config, 1234),
];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.