propelorm/Propel2

View on GitHub
templates/Command/propel.json.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php echo json_encode([
    'propel' => [
        'database' => [
            'connections' => [
                'default' => [
                    'adapter' => $rdbms,
                    'dsn' => $dsn,
                    'user' => $user,
                    'password' => $password,
                    'settings' => [
                        'charset' => $charset
                    ]
                ]
            ]
        ]
    ]
], JSON_PRETTY_PRINT);