Skip to content

Commit

Permalink
Update .gitignore file
Browse files Browse the repository at this point in the history
The .gitignore file was modified to optimize it for the project's current needs. Unnecessary Laravel specific ignores were removed and PHPUnit, Composer, and Package specific ignores were added. This change will ensure that irrelevant files are not tracked by the version control system.
  • Loading branch information
Dropelikeit committed May 13, 2024
1 parent 2787d2f commit 3662797
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,11 @@
/vendor/
node_modules/
npm-debug.log
yarn-error.log

# Laravel 4 specific
bootstrap/compiled.php
app/storage/

# Laravel 5 & Lumen specific
public/storage
public/hot

# Laravel 5 & Lumen specific with changed public path
public_html/storage
public_html/hot

storage/*.key
.env
Homestead.yaml
Homestead.json
/.vagrant
# PHPUnit specific
.phpunit.result.cache

# Composer
/vendor/
composer.lock

# Package specific
/tmp
/build
/tests/Http/Responses/metadata

0 comments on commit 3662797

Please sign in to comment.