forked from doctrine/phpcr-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli-config.midgard_mysql.php.dist
47 lines (40 loc) · 1.83 KB
/
cli-config.midgard_mysql.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* The config file is responsible to make class loading work and initialize a
* DocumentManagerHelper that contains the doctrine document manager with a
* Session of your phcpr implementation.
* The array $extraCommands can be used to inject implementation specific commands.
* Add instances of commands for eventual implementation specific commands to this array.
*/
$extraCommands = array();
$params = array(
'midgard2.configuration.db.type' => 'MySQL',
'midgard2.configuration.db.name' => 'midgard2_test',
'midgard2.configuration.db.host' => '0.0.0.0',
'midgard2.configuration.db.port' => 3306,
'midgard2.configuration.db.username' => '',
'midgard2.configuration.db.password' => '',
'midgard2.configuration.db.init' => true,
'midgard2.configuration.blobdir' => '/tmp/blobs'
);
$workspace = '';
$user = 'admin';
$pass = 'password';
$factory = new \Midgard\PHPCR\RepositoryFactory();
$repository = $factory->getRepository($params);
$credentials = new \PHPCR\SimpleCredentials($user, $pass);
$session = $repository->login($credentials, $workspace);
/* prepare the doctrine configuration */
$config = new \Doctrine\ODM\PHPCR\Configuration();
$driver = new \Doctrine\ODM\PHPCR\Mapping\Driver\AnnotationDriver(
new \Doctrine\Common\Annotations\AnnotationReader(),
__DIR__ . '/lib/Doctrine/ODM/PHPCR/Document'
);
$config->setMetadataDriverImpl($driver);
$dm = \Doctrine\ODM\PHPCR\DocumentManager::create($session, $config);
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
'dialog' => new \Symfony\Component\Console\Helper\DialogHelper(),
'phpcr' => new \PHPCR\Util\Console\Helper\PhpcrHelper($session),
'phpcr_console_dumper' => new \PHPCR\Util\Console\Helper\PhpcrConsoleDumperHelper(),
'dm' => new \Doctrine\ODM\PHPCR\Tools\Console\Helper\DocumentManagerHelper(null, $dm),
));