Download the PHP package alikm6/php-telegram-bot without Composer

On this page you can find all versions of the php package alikm6/php-telegram-bot. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-telegram-bot

PHP Telegram Bot API

This is a simple PHP package that provides an easy-to-use interface for the Telegram Bot API (https://core.telegram.org/bots). It is compliant with the May 28, 2024 Telegram Bot API update (version 7.4) and supports sending multiple requests at once.

Requirements

To use PHP Telegram Bot API, you need the following:

Installation

To install the package, use Composer:

If you encounter error it does not match your minimum-stability during installation, run the following commands and try again:

Usage

To use this package, you first need to create a Telegram object as follows:

Parse Update

If you have set up a webhook for your bot, you can receive the information sent from Telegram to the server in the form of an array using the following code:

For more security, if you want to process only requests sent from Telegram servers and ignore other requests, you can use the following code at the beginning of your webhook file.

In this case, if a request has not been sent from the Telegram servers, the php script will stop and the request will not be processed.

Use of methods

You can use any of the Telegram Bot API methods, for example:

See https://core.telegram.org/bots/api for more information about available methods.

Each method can receive an optional array of options for API requests:

The return option can have the following values:

If $options is not set, then the default options will be applied.

Sending Requests Simultaneously

To send several requests simultaneously, you can pass an array of requests to the method:

License

This package is licensed under the MIT License. See the LICENSE file for details.


All versions of php-telegram-bot with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4||^8.0
ext-curl Version *
ext-json Version *
php-curl-class/php-curl-class Version 9.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package alikm6/php-telegram-bot contains the following files

Loading the files please wait ....