2019-06-07 20:36:26 +02:00
|
|
|
# MadelineProtoPhar
|
|
|
|
|
|
|
|
This website contains the [MadelineProto](https://madelineproto.xyz) easy installer.
|
|
|
|
|
|
|
|
## Usage:
|
|
|
|
Download [madeline.php](https://phar.madelineproto.xyz/madeline.php), and include it in your script:
|
|
|
|
```
|
2019-06-19 17:37:11 +02:00
|
|
|
if (!file_exists('madeline.php')) {
|
|
|
|
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
|
|
|
}
|
2019-06-07 20:36:26 +02:00
|
|
|
include 'madeline.php';
|
|
|
|
```
|
|
|
|
|
|
|
|
That's it.
|