.gitignore for FuelPHP
5 ignore rules for FuelPHP, ready to copy into your repository.
PHP web framework
The complete .gitignore for FuelPHP
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:28:10 UTC
# Technologies: FuelPHP
### FuelPHP ###
/fuel/vendor
/docs/
/fuel/app/logs/*/*/*
/fuel/app/cache/*/*
/fuel/app/config/crypt.php
What these FuelPHP rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
/fuel/vendor |
the composer package lock file and install directory Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file /composer.lock |
/docs/ |
the fuelphp document |
/fuel/app/logs/*/*/* |
dynamically generated files |
/fuel/app/cache/*/* |
General |
/fuel/app/config/crypt.php |
General |
How to use this .gitignore for FuelPHP
- Copy the FuelPHP rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.