xref: /plugin/dbquery/conf/metadata.php (revision 2e564e06806b572fcd4150c4267799087a935085)
1*2e564e06SAndreas Gohr<?php
2*2e564e06SAndreas Gohr/**
3*2e564e06SAndreas Gohr * Options for the dbquery plugin
4*2e564e06SAndreas Gohr *
5*2e564e06SAndreas Gohr * @author Andreas Gohr <dokuwiki@cosmocode.de>
6*2e564e06SAndreas Gohr */
7*2e564e06SAndreas Gohr
8*2e564e06SAndreas Gohr$meta['namespace'] = ['string'];
9*2e564e06SAndreas Gohr$meta['dsn'] = ['string'];
10*2e564e06SAndreas Gohr$meta['user'] = ['string'];
11*2e564e06SAndreas Gohr$meta['pass'] = ['password'];
12*2e564e06SAndreas Gohr
13*2e564e06SAndreas Gohr
14