transloadit / php-sdk

Transloadit's official PHP SDK

Home Page:https://transloadit.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove files not used

eerison opened this issue · comments

I can see many files that should not be in the repository or it's unnecessary

I'll list them

  • .vscode
  • tool
  • .empty
  • #52
  • release.sh ?
  • Makefile ?

can we remove them?

@goto-bus-stop what do you say about it?

I havent done a release of this so I'm not sure how necessary release.sh is, but we do use Makefile and the composer lockfile. The idea behind tool/generate-example-docs.php is to keep the examples and the readme in sync, although the last time the readme was updated that script was not used 😅

.empty looks like a mistake, and imo .vscode belongs in a gitignore file, so we can definitely get rid of those two.

but we do use Makefile and the composer lockfile.

tool/generate-example-docs.php is to keep the examples and the readme in sync

I don't get it! we should need to write example in readme.md, I don't get why do we need to sync something?

although the last time the readme was updated that script was not used 😅
then can we assume that it's not necessary? 😄

and imo .vscode belongs in a gitignore file

yes, but not in the project, it need to be ignored in the user's machine, like this

git config --global core.excludesFile '~/.gitignore'

because this .vscode do not make part of project files!