Ankündigung

Einklappen
Keine Ankündigung bisher.

LBS19000303 - Telegram Contact I LBS19000304 - Telegram Receiver I LBS19000645 - Telegram Command Validator

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • MrIcemanLE
    antwortet
    Hier noch meine eigentliche "Telegramm-Logik", wobei das Wort Logik hier etwas übertrieben ist

    Trigger Telegram.jpg

    Einen Kommentar schreiben:


  • MrIcemanLE
    antwortet
    Eigentlich brauchst du nur zwei KOs, eines um dir den String zu merken (hier 474) und eines um in einer anderen Logik den Updatetext zu setzen (hier 477), welcher hinzugefügt werden soll. Hier mal ein Screenshot. Allerdings ist das schon etwas älter. Wahrscheinlich könnte man das kompakter bauen, aber "never change a running system". ;-)

    Bildschirmfoto 2021-05-10 um 13.35.51.png

    Einen Kommentar schreiben:


  • MVZ
    antwortet
    Habe es mit Hilfe von Sequenzen hinbekommen und bin in der Lage, die Information(en) auch an mehrere Personen zu schicken

    Jetzt warte ich noch den Praxistest ab und stelle die Lösung zur Verfügung. Allerdings ist das mit der Abwesenheit für den Praxistest in Zeiten von Corona echt eine Herausforderung...ist eigentlich immer einer da

    Schöne Grüße
    mvz

    Einen Kommentar schreiben:


  • MVZ
    antwortet
    Vielen Dank für den Hinweis - hatte ich bereits gesehen und als Grundlage für meine bisherigen Versuche genutzt.

    In dem von Dir verlinkten Post handelt es sich bei Schritt 1 um die originäre Nachricht; Schritt 2 oder 3 unterscheiden sich nur, ob eine bestimmte (Message-ID) oder die letzte Nachricht upgedatet wird. Dieses Update führt aber zum Löschen und Überschreiben des existierenden Textes.

    Um nun den vorhandenen Text "nur" zu ergänzen, erfordert dies das Senden der "alten" Nachricht plus der Ergänzung (neue Nachricht).

    Wie sieht aber eine optimierte Logik aus inklusive des Zwischenspeicherns der bereits gesendeten Teil-Nachrichten? Ich experimentiere dabei mit dem "1800001 Strings verbinden 10-fach", bin aber nicht sehr erfolgreich...

    Vielleicht kann mir hier jemand mit seiner Logik einen Denkanstoß geben.

    Schöne Grüße
    mvz

    Einen Kommentar schreiben:


  • beauty
    antwortet
    Schau mal hier......
    https://knx-user-forum.de/forum/proj...89#post1091289

    Einen Kommentar schreiben:


  • MVZ
    antwortet
    Hallo zusammen,

    nachdem ich es endlich geschafft habe, mich mit Telegram zu beschäftigen, hat mich das Telegram-Fieber gepackt.

    Allerdings scheitere ich, beim Nachbau des kompakten Formates, welches MrIcemanLE im Posting #286 aus dem Jahre 2017 vorgestellt hat.


    Zitat von MrIcemanLE Beitrag anzeigen

    Vielen Dank für die Umsetzung. Der Chatverlauf sieht jetzt übersichtlicher aus. Anbei ein kleines Beispiel. Einziger Nachteil ist die fehlende Benachrichtigung bei einem Update.

    Update.jpg


    Kann mir hierbei bitte jemand auf die Sprünge helfen und mir eine entsprechende Logik zuschicken?

    Nach meinem Verständnis handelt es sich um eine Mitteilung, welche danach 2x upgedatet wird. Wie stelle ich aber sicher, dass der alte Text erhalten bleibt und um die neuen Angaben ergänzt wird? Oder habe ich hier etwas falsch verstanden?

    Bin für jeden Hinweis dankbar.

    Schöne Grüße
    mvz

    Einen Kommentar schreiben:


  • DiJai
    antwortet
    Hallo,
    seit dem Umzug auf einen neuen Rechner mit CentOS7 und Edomi 2.03 liefert der Telegram-Bot (LBS19000303) nichts mehr aus. ChatID und APIKey wurden nicht geändert, die generierten Meldungen laufen auch richtig bis zum LBS durch. Von da ab stockt's. Lediglich folgende Fehlermeldung findet sich im Log:
    Code:
    [FONT=EDOMIfontMono][SIZE=10px]Datei: /usr/local/edomi/main/include/php/php-telegram-bot/src/Request.php | Fehlercode: 0 | Zeile: 685 | Call to undefined function Longman\TelegramBot\mb_substr()[/SIZE][/FONT]
    PHP-Version ist 7.2
    Hat jemand eine Idee?

    Kaum macht man's richtig, schon geht's: PHP:Extensions nicht installiert
    Zuletzt geändert von DiJai; 06.05.2021, 18:00.

    Einen Kommentar schreiben:


  • fiddo
    antwortet
    Zitat von seppelp Beitrag anzeigen
    Hallo zusammen,

    leider habe ich seit einem Umzug auf den LXC Container von starwarsfan das Problem wenn ich ein Emoji (UTF-8 konvertiert) versende, dass dieser Versand Fehlermeldungen auswirft. Das Emoji kommt an, aber leider füllt es den Fehler-Log. Der Fehler tritt pro Emoji 4 mal auf und ist unabhängig vom verwendeten Emoji:

    Code:
    Datei: /usr/local/edomi/www/data/liveproject/lbs/EXE19000303.php | Fehlercode: 8192 | Zeile: 132 | Invalid characters passed for attempted conversion, these have been ignored
    PHP Version: 7.4.16

    Leider reichen meine PHP-Kenntnisse nicht aus um den Fehler zu beheben. Ich gehe davon aus, dass dieser Abschnitt den Fehler verursacht (ab Zeile 363):
    Code:
    $text = str_replace('\n', "\n", $content);
    // replace UTF8 emoji codes with emojis
    // $text = preg_replace("#(\\\x[0-9A-Fa-f]{2})#e", "chr(hexdec('\\1'))", $text);
    $text = preg_replace_callback("/(\\\x[0-9A-Fa-f]{2})/", function ($matches) {
    return chr(hexdec($matches[1]));
    }, $text);
    // replace unicode emoji codes with emojis
    $text = preg_replace_callback('/\\\\u([0-9a-fA-F]{4})/', function ($match) {
    return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
    }, $text);
    Könnt ihr mir helfen?


    Ich hab das gleiche Problem. Vielleicht kann jemand was dazu sagen?

    Einen Kommentar schreiben:


  • Martin W
    antwortet
    ne ich habe centos7


    yum update einfach ?

    /edit

    [root@localhost ~]# cat /etc/centos-release
    CentOS Linux release 7.6.1810 (Core)
    [root@localhost ~]# yum install php
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    * base: ftp.antilo.de
    * epel: ftp.plusline.net
    * extras: ftp.rz.uni-frankfurt.de
    * updates: de.mirrors.clouvider.net
    Package php-5.4.16-48.el7.x86_64 already installed and latest version
    Nothing to do
    [root@localhost ~]#

    wie genau kann ich ein update auf die richtige php version machen?
    Zuletzt geändert von Martin W; 01.05.2021, 20:01.

    Einen Kommentar schreiben:


  • skyacer
    antwortet
    Deine PHP Version ist veraltet. Nutzt du noch CentOS 6? Ich glaube der LBS benötigt PHP 7.x .
    Grüße

    Einen Kommentar schreiben:


  • vento66
    antwortet
    Das sind nicht 42 Probleme, das ist ein Problem. Du benötigst php mit mindestens Version 7.3. Du setzt Sicher Centos6.5 mit PHP 5.4 ein. Am besten wäre ein Umstellen auf CentOS7.
    Zuletzt geändert von vento66; 02.05.2021, 12:52.

    Einen Kommentar schreiben:


  • Martin W
    antwortet
    hallo zusammen,
    bin gerade am composer installieren und bekomme folgende fehlermeldung:
    Problem 1
    - Root composer.json requires php ^7.3|^8.0 but your php version (5.4.16) do es not satisfy that requirement.
    Problem 2
    - guzzlehttp/guzzle is locked to version 7.3.0 and an update of this package was not requested.
    - guzzlehttp/guzzle 7.3.0 requires php ^7.2.5 || ^8.0 -> your php version (5 .4.16) does not satisfy that requirement.
    Problem 3
    - guzzlehttp/promises is locked to version 1.4.1 and an update of this packa ge was not requested.
    - guzzlehttp/promises 1.4.1 requires php >=5.5 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 4
    - psr/http-client is locked to version 1.0.1 and an update of this package w as not requested.
    - psr/http-client 1.0.1 requires php ^7.0 || ^8.0 -> your php version (5.4.1 6) does not satisfy that requirement.
    Problem 5
    - ralouphie/getallheaders is locked to version 3.0.3 and an update of this p ackage was not requested.
    - ralouphie/getallheaders 3.0.3 requires php >=5.6 -> your php version (5.4. 16) does not satisfy that requirement.
    Problem 6
    - dms/phpunit-arraysubset-asserts is locked to version v0.2.1 and an update of this package was not requested.
    - dms/phpunit-arraysubset-asserts v0.2.1 requires php ^7.3|^8.0 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 7
    - doctrine/instantiator is locked to version 1.4.0 and an update of this pac kage was not requested.
    - doctrine/instantiator 1.4.0 requires php ^7.1 || ^8.0 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 8
    - monolog/monolog is locked to version 2.2.0 and an update of this package w as not requested.
    - monolog/monolog 2.2.0 requires php >=7.2 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 9
    - myclabs/deep-copy is locked to version 1.10.2 and an update of this packag e was not requested.
    - myclabs/deep-copy 1.10.2 requires php ^7.1 || ^8.0 -> your php version (5. 4.16) does not satisfy that requirement.
    Problem 10
    - nikic/php-parser is locked to version v4.10.4 and an update of this packag e was not requested.
    - nikic/php-parser v4.10.4 requires php >=7.0 -> your php version (5.4.16) d oes not satisfy that requirement.
    Problem 11
    - phar-io/manifest is locked to version 2.0.1 and an update of this package was not requested.
    - phar-io/manifest 2.0.1 requires php ^7.2 || ^8.0 -> your php version (5.4. 16) does not satisfy that requirement.
    Problem 12
    - phar-io/version is locked to version 3.1.0 and an update of this package w as not requested.
    - phar-io/version 3.1.0 requires php ^7.2 || ^8.0 -> your php version (5.4.1 6) does not satisfy that requirement.
    Problem 13
    - phpdocumentor/reflection-common is locked to version 2.2.0 and an update o f this package was not requested.
    - phpdocumentor/reflection-common 2.2.0 requires php ^7.2 || ^8.0 -> your ph p version (5.4.16) does not satisfy that requirement.
    Problem 14
    - phpdocumentor/reflection-docblock is locked to version 5.2.2 and an update of this package was not requested.
    - phpdocumentor/reflection-docblock 5.2.2 requires php ^7.2 || ^8.0 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 15
    - phpdocumentor/type-resolver is locked to version 1.4.0 and an update of th is package was not requested.
    - phpdocumentor/type-resolver 1.4.0 requires php ^7.2 || ^8.0 -> your php ve rsion (5.4.16) does not satisfy that requirement.
    Problem 16
    - phpspec/prophecy is locked to version 1.13.0 and an update of this package was not requested.
    - phpspec/prophecy 1.13.0 requires php ^7.2 || ~8.0, <8.1 -> your php versio n (5.4.16) does not satisfy that requirement.
    Problem 17
    - phpunit/php-code-coverage is locked to version 9.2.6 and an update of this package was not requested.
    - phpunit/php-code-coverage 9.2.6 requires php >=7.3 -> your php version (5. 4.16) does not satisfy that requirement.
    Problem 18
    - phpunit/php-file-iterator is locked to version 3.0.5 and an update of this package was not requested.
    - phpunit/php-file-iterator 3.0.5 requires php >=7.3 -> your php version (5. 4.16) does not satisfy that requirement.
    Problem 19
    - phpunit/php-invoker is locked to version 3.1.1 and an update of this packa ge was not requested.
    - phpunit/php-invoker 3.1.1 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 20
    - phpunit/php-text-template is locked to version 2.0.4 and an update of this package was not requested.
    - phpunit/php-text-template 2.0.4 requires php >=7.3 -> your php version (5. 4.16) does not satisfy that requirement.
    Problem 21
    - phpunit/php-timer is locked to version 5.0.3 and an update of this package was not requested.
    - phpunit/php-timer 5.0.3 requires php >=7.3 -> your php version (5.4.16) do es not satisfy that requirement.
    Problem 22
    - phpunit/phpunit is locked to version 9.5.4 and an update of this package w as not requested.
    - phpunit/phpunit 9.5.4 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 23
    - sebastian/cli-parser is locked to version 1.0.1 and an update of this pack age was not requested.
    - sebastian/cli-parser 1.0.1 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 24
    - sebastian/code-unit is locked to version 1.0.8 and an update of this packa ge was not requested.
    - sebastian/code-unit 1.0.8 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 25
    - sebastian/code-unit-reverse-lookup is locked to version 2.0.3 and an updat e of this package was not requested.
    - sebastian/code-unit-reverse-lookup 2.0.3 requires php >=7.3 -> your php ve rsion (5.4.16) does not satisfy that requirement.
    Problem 26
    - sebastian/comparator is locked to version 4.0.6 and an update of this pack age was not requested.
    - sebastian/comparator 4.0.6 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 27
    - sebastian/complexity is locked to version 2.0.2 and an update of this pack age was not requested.
    - sebastian/complexity 2.0.2 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 28
    - sebastian/diff is locked to version 4.0.4 and an update of this package wa s not requested.
    - sebastian/diff 4.0.4 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 29
    - sebastian/environment is locked to version 5.1.3 and an update of this pac kage was not requested.
    - sebastian/environment 5.1.3 requires php >=7.3 -> your php version (5.4.16 ) does not satisfy that requirement.
    Problem 30
    - sebastian/exporter is locked to version 4.0.3 and an update of this packag e was not requested.
    - sebastian/exporter 4.0.3 requires php >=7.3 -> your php version (5.4.16) d oes not satisfy that requirement.
    Problem 31
    - sebastian/global-state is locked to version 5.0.2 and an update of this pa ckage was not requested.
    - sebastian/global-state 5.0.2 requires php >=7.3 -> your php version (5.4.1 6) does not satisfy that requirement.
    Problem 32
    - sebastian/lines-of-code is locked to version 1.0.3 and an update of this p ackage was not requested.
    - sebastian/lines-of-code 1.0.3 requires php >=7.3 -> your php version (5.4. 16) does not satisfy that requirement.
    Problem 33
    - sebastian/object-enumerator is locked to version 4.0.4 and an update of th is package was not requested.
    - sebastian/object-enumerator 4.0.4 requires php >=7.3 -> your php version ( 5.4.16) does not satisfy that requirement.
    Problem 34
    - sebastian/object-reflector is locked to version 2.0.4 and an update of thi s package was not requested.
    - sebastian/object-reflector 2.0.4 requires php >=7.3 -> your php version (5 .4.16) does not satisfy that requirement.
    Problem 35
    - sebastian/recursion-context is locked to version 4.0.4 and an update of th is package was not requested.
    - sebastian/recursion-context 4.0.4 requires php >=7.3 -> your php version ( 5.4.16) does not satisfy that requirement.
    Problem 36
    - sebastian/resource-operations is locked to version 3.0.3 and an update of this package was not requested.
    - sebastian/resource-operations 3.0.3 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 37
    - sebastian/type is locked to version 2.3.1 and an update of this package wa s not requested.
    - sebastian/type 2.3.1 requires php >=7.3 -> your php version (5.4.16) does not satisfy that requirement.
    Problem 38
    - sebastian/version is locked to version 3.0.2 and an update of this package was not requested.
    - sebastian/version 3.0.2 requires php >=7.3 -> your php version (5.4.16) do es not satisfy that requirement.
    Problem 39
    - symfony/polyfill-ctype is locked to version v1.22.1 and an update of this package was not requested.
    - symfony/polyfill-ctype v1.22.1 requires php >=7.1 -> your php version (5.4 .16) does not satisfy that requirement.
    Problem 40
    - theseer/tokenizer is locked to version 1.2.0 and an update of this package was not requested.
    - theseer/tokenizer 1.2.0 requires php ^7.2 || ^8.0 -> your php version (5.4 .16) does not satisfy that requirement.
    Problem 41
    - webmozart/assert is locked to version 1.10.0 and an update of this package was not requested.
    - webmozart/assert 1.10.0 requires php ^7.2 || ^8.0 -> your php version (5.4 .16) does not satisfy that requirement.
    Problem 42
    - ralouphie/getallheaders 3.0.3 requires php >=5.6 -> your php version (5.4. 16) does not satisfy that requirement.
    - guzzlehttp/psr7 1.8.1 requires ralouphie/getallheaders ^2.0.5 || ^3.0.0 -> satisfiable by ralouphie/getallheaders[3.0.3].
    - guzzlehttp/psr7 is locked to version 1.8.1 and an update of this package w as not requested.


    ich verstehe (denke ich) was da steht aber habe keine ahnung was ich machen muss. Hat jemand einen Tipp wie ich den Fehler beheben kann ?

    Danke vielmals

    Einen Kommentar schreiben:


  • seppelp
    antwortet
    Hallo zusammen,

    leider habe ich seit einem Umzug auf den LXC Container von starwarsfan das Problem wenn ich ein Emoji (UTF-8 konvertiert) versende, dass dieser Versand Fehlermeldungen auswirft. Das Emoji kommt an, aber leider füllt es den Fehler-Log. Der Fehler tritt pro Emoji 4 mal auf und ist unabhängig vom verwendeten Emoji:

    Code:
    Datei: /usr/local/edomi/www/data/liveproject/lbs/EXE19000303.php | Fehlercode: 8192 | Zeile: 132 | Invalid characters passed for attempted conversion, these have been ignored
    PHP Version: 7.4.16

    Leider reichen meine PHP-Kenntnisse nicht aus um den Fehler zu beheben. Ich gehe davon aus, dass dieser Abschnitt den Fehler verursacht (ab Zeile 363):
    Code:
    $text = str_replace('\n', "\n", $content);
                            // replace UTF8 emoji codes with emojis
                            // $text = preg_replace("#(\\\x[0-9A-Fa-f]{2})#e", "chr(hexdec('\\1'))", $text);
                            $text = preg_replace_callback("/(\\\x[0-9A-Fa-f]{2})/", function ($matches) {
                                return chr(hexdec($matches[1]));
                            }, $text);
                            // replace unicode emoji codes with emojis
                            $text = preg_replace_callback('/\\\\u([0-9a-fA-F]{4})/', function ($match) {
                                return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
                            }, $text);
    Könnt ihr mir helfen?

    Einen Kommentar schreiben:


  • murelli146
    antwortet
    Habe das Problem finden können.

    Nach dem Backup einspielen wird vermutlich der neue php-telegram-bot mit dem aus dem Backup überschrieben.
    Habe nun eine temporäre frische Edomi installation gemacht und mir den Ordner und den Composer kopiert.
    Nun funktioniert es auch wieder. (ohne PHP Update)

    SG Gernot

    Einen Kommentar schreiben:


  • murelli146
    antwortet
    Habe Probleme den LBS richtig ans laufen zu bekommen. (Umstieg CentOS 6.5 auf 7)

    Infos:
    Neueste Docker installation von starwarsfan (Neuistalliert und Backup eingespielt auf neuangelegten Volumes)
    LSB Version 1.1 von jonofe

    Problem: Text wird versand (OK), sobald ein Foto vom Archiv versendet wird funktioniert es nicht mehr und es kann auch kein Text mehr versendet werden.
    Es hilft nur mehr das Projekt neu zu aktivieren dann funktioniert der Text versand wieder.

    Habe den Ordner "php-telegram-bot" und die installation lt Anleitung gemacht und hänge beim composer install

    Welches vorgehen würdet ihr empfehlen?

    PHP Version updaten oder gibt es noch eine andere möglichkeit?

    Schöne Grüße
    Gernot

    [root@EDOMI php-telegram-bot]# composer install
    Installing dependencies from lock file (including require-dev)
    Verifying lock file contents can be installed on current platform.
    Your lock file does not contain a compatible set of packages. Please run composer update.

    Problem 1
    - Root composer.json requires php ^7.3|^8.0 but your php version (7.2.34) does not satisfy that requirement.
    Problem 2
    - dms/phpunit-arraysubset-asserts is locked to version v0.2.1 and an update of this package was not requested.
    - dms/phpunit-arraysubset-asserts v0.2.1 requires php ^7.3|^8.0 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 3
    - phpunit/php-code-coverage is locked to version 9.2.5 and an update of this package was not requested.
    - phpunit/php-code-coverage 9.2.5 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 4
    - phpunit/php-file-iterator is locked to version 3.0.5 and an update of this package was not requested.
    - phpunit/php-file-iterator 3.0.5 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 5
    - phpunit/php-invoker is locked to version 3.1.1 and an update of this package was not requested.
    - phpunit/php-invoker 3.1.1 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 6
    - phpunit/php-text-template is locked to version 2.0.4 and an update of this package was not requested.
    - phpunit/php-text-template 2.0.4 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 7
    - phpunit/php-timer is locked to version 5.0.3 and an update of this package was not requested.
    - phpunit/php-timer 5.0.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 8
    - phpunit/phpunit is locked to version 9.5.2 and an update of this package was not requested.
    - phpunit/phpunit 9.5.2 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 9
    - sebastian/cli-parser is locked to version 1.0.1 and an update of this package was not requested.
    - sebastian/cli-parser 1.0.1 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 10
    - sebastian/code-unit is locked to version 1.0.8 and an update of this package was not requested.
    - sebastian/code-unit 1.0.8 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 11
    - sebastian/code-unit-reverse-lookup is locked to version 2.0.3 and an update of this package was not requested.
    - sebastian/code-unit-reverse-lookup 2.0.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 12
    - sebastian/comparator is locked to version 4.0.6 and an update of this package was not requested.
    - sebastian/comparator 4.0.6 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 13
    - sebastian/complexity is locked to version 2.0.2 and an update of this package was not requested.
    - sebastian/complexity 2.0.2 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 14
    - sebastian/diff is locked to version 4.0.4 and an update of this package was not requested.
    - sebastian/diff 4.0.4 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 15
    - sebastian/environment is locked to version 5.1.3 and an update of this package was not requested.
    - sebastian/environment 5.1.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 16
    - sebastian/exporter is locked to version 4.0.3 and an update of this package was not requested.
    - sebastian/exporter 4.0.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 17
    - sebastian/global-state is locked to version 5.0.2 and an update of this package was not requested.
    - sebastian/global-state 5.0.2 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 18
    - sebastian/lines-of-code is locked to version 1.0.3 and an update of this package was not requested.
    - sebastian/lines-of-code 1.0.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 19
    - sebastian/object-enumerator is locked to version 4.0.4 and an update of this package was not requested.
    - sebastian/object-enumerator 4.0.4 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 20
    - sebastian/object-reflector is locked to version 2.0.4 and an update of this package was not requested.
    - sebastian/object-reflector 2.0.4 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 21
    - sebastian/recursion-context is locked to version 4.0.4 and an update of this package was not requested.
    - sebastian/recursion-context 4.0.4 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 22
    - sebastian/resource-operations is locked to version 3.0.3 and an update of this package was not requested.
    - sebastian/resource-operations 3.0.3 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 23
    - sebastian/type is locked to version 2.3.1 and an update of this package was not requested.
    - sebastian/type 2.3.1 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 24
    - sebastian/version is locked to version 3.0.2 and an update of this package was not requested.
    - sebastian/version 3.0.2 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    Problem 25
    - sebastian/comparator 4.0.6 requires php >=7.3 -> your php version (7.2.34) does not satisfy that requirement.
    - phpspec/prophecy 1.12.2 requires sebastian/comparator ^3.0 || ^4.0 -> satisfiable by sebastian/comparator[4.0.6].
    - phpspec/prophecy is locked to version 1.12.2 and an update of this package was not requested.

    [root@EDOMI php-telegram-bot]# composer.json requires php ^7.3

    Einen Kommentar schreiben:

Lädt...
X