mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-17 13:28:35 +01:00
23 lines
577 B
XML
23 lines
577 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<config>
|
|
<!-- Uncomment this if you have PEAR Log installed
|
|
<log>
|
|
<type>file</type>
|
|
<name>/path/to/propel.log</name>
|
|
<ident>propel-bookstore</ident>
|
|
<level>7</level>
|
|
</log>
|
|
-->
|
|
<propel>
|
|
<datasources default="demo">
|
|
<datasource id="demo">
|
|
<adapter>sqlite</adapter> <!-- sqlite, mysql, mssql, oracle, or pgsql -->
|
|
<connection>
|
|
<classname>DebugPDO</classname>
|
|
<dsn>sqlite:demo.db</dsn>
|
|
</connection>
|
|
</datasource>
|
|
</datasources>
|
|
</propel>
|
|
</config>
|