How to run CakePHP 3.7 Shell Commands in Heroku console

| By Webner

Learn how to run CakePHP 3.7 Shell Commands in Heroku console 1. Create myCommandShell.php file in src/Shell folder with below content <?php namespace App\Shell; use Cake\Console\Shell; use App\Controller\PagesController; class myCommandShell extends Shell { public function main() { // do your

Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*

| By Webner

How to resolve “Class ‘App\Controller\Aws\S3\S3Client’ not found” error in CakePHP 3.* Problem: Class ‘App\Controller\Aws\S3\S3Client’ not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [