Your project files should use safer permissions

More information: https://insight.symfony.com/what-we-analyse/php.too_permissive_file_permissions

Your project contains files with permissive permissions. In order to avoid opening a security breach, you should restrict execution rights on following files:
  • .github/workflows/test.yml
Time to fix: about 15 minutes
Read doc Permalink Copy Prompt
Collective
chmod a-x '.github/workflows/test.yml'

Your project gitignore file should not contain user-specific files 3

More information: https://insight.symfony.com/what-we-analyse/git.user_specific_ignored_file

in .gitignore, line 6
  1. # Generic
  2. # --------------------------
  3. Thumbs.db
  4. Desktop.ini
  5. .directory
  6. .DS_Store
    .DS_Store is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.
    Time to fix: about 15 minutes
    Read doc Permalink Copy Prompt
    Last edited by Fery Wardiyanto
  7. ._*
  8. *.cache
  9. *.crt
  10. *.log
  11. *.old
in .gitignore, line 3
  1. # Generic
  2. # --------------------------
  3. Thumbs.db
    Thumbs.db is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.
    Time to fix: about 15 minutes
    Read doc Permalink Copy Prompt
    Last edited by Fery Wardiyanto
  4. Desktop.ini
  5. .directory
  6. .DS_Store
  7. ._*
  8. *.cache
  • feryardiant

    Ignored on Tue, 22 Oct 2024 15:50:01 GMT
in .gitignore, line 34
  1. vendor
  2. yarn.lock
  3. # IDE Project Configurations
  4. # --------------------------
  5. .idea
    .idea is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.
    Time to fix: about 15 minutes
    Read doc Permalink Copy Prompt
    Last edited by Fery Wardiyanto
  6. .settings
  7. .vscode
  8. .project
  9. *.sublime-*
  • feryardiant

    Ignored on Tue, 22 Oct 2024 15:50:04 GMT