Herokuのデプロイのやり方で躓いてしまったので、メモとして書き残しておきます。
初めに、GitとHeroku CLIのインストールが必要です。
$ cd (デプロイするディレクトリ)
$ heroku login
$ heroku create --buildpack heroku/php
Creating app... done, ⬢ aaaaa-aaaaaa-11111 ←アプリ名
$ git init
$ heroku git:remote -a herokuのアプリ名
$ git add .
$ git commit -m "コメント"
$ git push heroku master