From 4117b9a1e7e6617f555d5e63ffcdba56b825648a Mon Sep 17 00:00:00 2001 From: Rick Goemans Date: Fri, 11 Jul 2025 09:44:35 +0200 Subject: [PATCH] chore: Updated laravel dependencies and gitignore (for IDE and OS files) --- .gitignore | 15 ++++++++++++++- composer.json | 4 ++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 708b377..a26d216 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,16 @@ +# OS files +.DS_Store +Thumbs.db + +# Dependencies vendor composer.lock -.phpunit.result.cache \ No newline at end of file + +# Testing +.phpunit.result.cache + +# IDEA +/.idea +/.nova +/.vscode +/.fleet diff --git a/composer.json b/composer.json index 39e1e25..679ecc8 100644 --- a/composer.json +++ b/composer.json @@ -30,8 +30,8 @@ "ext-json": "*", "avadim/fast-excel-writer": "^6.6", "avadim/fast-excel-reader": "^2.26", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0" + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0" }, "require-dev": { "orchestra/testbench": "^4.0|^5.0|^6.0",