1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 10:34:38 +01:00
MadelineProto/examples/database-config-examples/mysql.php
Daniil Gentili 9703079266
Some checks failed
ci/woodpecker/push/build Pipeline failed
You guessed it, even more refactoring
2022-12-30 21:54:44 +01:00

58 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
use danog\MadelineProto\API;
use danog\MadelineProto\Settings;
use danog\MadelineProto\Settings\Database\Mysql;
/*
* load MadelineProto in Your Project
*/
if (file_exists('vendor/autoload.php')) {
include 'vendor/autoload.php';
} else {
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
}
/*
* create default mysql object
*/
$database = new Mysql;
/*
config and set auth information
*/
$database->setUri('127.0.0.1:3306'); // local mysql service connection with default port
$database->setUsername('Wsudo'); // mysql service username
$database->setPassword('12345678'); // mysql service password
$database->setDatabase('MyBotsData');// which database madeline proto will store datas in that
/*
create default settings object
*/
$settings = new Settings;
/*
set and merge database settings to main settings
*/
$settings->setDb($database);
/*
create madeline proto session
*/
$MadelineProto = new API('madeline.session', $settings);
/*
start madeline proto workers
*/
$MadelineProto->start();