Skip to content

Commit

Permalink
gitignore file changed
Browse files Browse the repository at this point in the history
  • Loading branch information
madushanj committed May 7, 2023
1 parent 2aaac93 commit 00004b3
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 18 deletions.
32 changes: 16 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/node_modules
/vendor
/.vscode
/.phpunit.cache
/storage/framework/cache/data/*
/storage/framework/laravel-excel/*
/storage/framework/sessions/*
/storage/framework/testing/*
/storage/framework/views/*.php
/storage/debugbar/*
/storage/logs/*
/storage/app/public/profile-pictures/*
/storage/app/public/inventory-item-photos/*
/public/build/assets/*.js
/public/build/assets/*.css
/public/storage
/node_modules
/public/build
/public/hot
accounts
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.env.production
.phpunit.result.cache
Homestead.json
Homestead.yaml
auth.json
npm-debug.log
yarn-error.log
/.fleet
/.idea
/.vscode
11 changes: 9 additions & 2 deletions storage/framework/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
*
!.gitignore
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json
3 changes: 3 additions & 0 deletions storage/framework/cache/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!data/
!.gitignore
2 changes: 2 additions & 0 deletions storage/framework/cache/data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 2 additions & 0 deletions storage/framework/sessions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 2 additions & 0 deletions storage/framework/testing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 2 additions & 0 deletions storage/framework/views/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
16 changes: 16 additions & 0 deletions tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}

0 comments on commit 00004b3

Please sign in to comment.