diff --git a/.gitignore b/.gitignore index 1835154..7fe978f 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore index d6b7ef3..05c4471 100644 --- a/storage/framework/.gitignore +++ b/storage/framework/.gitignore @@ -1,2 +1,9 @@ -* -!.gitignore +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100644 index 0000000..01e4a6c --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php new file mode 100644 index 0000000..5773b0c --- /dev/null +++ b/tests/Unit/ExampleTest.php @@ -0,0 +1,16 @@ +assertTrue(true); + } +}