Skip to content

defstudio/telegraph

Folders and files

NameName
Last commit message
Last commit date
Jan 7, 2024
Jan 22, 2024
Aug 28, 2022
Feb 1, 2024
Jan 26, 2024
Jan 22, 2024
Feb 1, 2024
Feb 1, 2024
Nov 19, 2021
Mar 5, 2022
Nov 21, 2021
Nov 20, 2021
Feb 1, 2024
Nov 19, 2021
Jan 8, 2024
Dec 25, 2023
Feb 6, 2023
Feb 27, 2022
Oct 3, 2022

Repository files navigation

Pest Laravel Expectations

Latest Version on Packagist Tests Code Style Static Analysis Total Downloads License Twitter Follow


Telegraph is a Laravel package for fluently interacting with Telegram Bots made by def:studio

Telegraph::message('hello world')
    ->keyboard(Keyboard::make()->buttons([
            Button::make('Delete')->action('delete')->param('id', '42'),
            Button::make('open')->url('https://test.it'),
    ]))->send();

Installation

You can install the package via composer:

composer require defstudio/telegraph

Publish and launch required migrations:

php artisan vendor:publish --tag="telegraph-migrations"
php artisan migrate

Optionally, you can publish the config and translation file with:

php artisan vendor:publish --tag="telegraph-config"
php artisan vendor:publish --tag="telegraph-translations"

Usage & Documentation

After a new bot is created and added to a chat/group/channel (as described in our documentation), the Telegraph facade can be used to easily send messages and interact with it:

Telegraph::message('this is great')->send();

An extensive documentation is available at

https://defstudio.github.io/telegraph

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently. Follow Us on Twitter for more updates about this package.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

Translators

License

The MIT License (MIT). Please see License File for more information.