What does your cron job look like? Can you run it from the command line and see what happens? My cron job was my problem. This was my cron job:
/opt/cpanel/ea-php80/root/usr/bin/php /home/~myusername~/public_html/~osticketfolder~/api/cron.php
It was set to use PHP 8.0 but my composer dependencies required 8.1 or higher. Since I'm actually running 8.2 I simply changed my cron job to use the default php:
php /home/~myusername~/public_html/~osticketfolder~/api/cron.php
That solved my problem. Hopefully that fixes your problem, too. I do see in your screenshot that you are running PHP 8.1.11 but make sure your cron job is using at least that. I did not create the cron job myself initially, I believe Softoculous set it. Or maybe I did and I had to specify PHP 8.0 myself as when I installed it I was on 7.4. I don't really remember. Either way, hope it all works out for you.