From e942214de83a5fdc0ee4c026252e75db72b3a494 Mon Sep 17 00:00:00 2001 From: Robin de Laater Date: Mon, 22 Dec 2025 10:21:46 +0100 Subject: [PATCH 1/2] Bump versions --- .idea/.gitignore | 8 +++++ .idea/cli.iml | 21 +++++++++++++ .idea/copilot.data.migration.agent.xml | 6 ++++ .idea/copilot.data.migration.ask.xml | 6 ++++ .idea/copilot.data.migration.ask2agent.xml | 6 ++++ .idea/copilot.data.migration.edit.xml | 6 ++++ .idea/laravel-idea.xml | 8 +++++ .idea/modules.xml | 8 +++++ .idea/php.xml | 35 ++++++++++++++++++++++ .idea/vcs.xml | 6 ++++ composer.json | 4 +-- 11 files changed, 112 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/cli.iml create mode 100644 .idea/copilot.data.migration.agent.xml create mode 100644 .idea/copilot.data.migration.ask.xml create mode 100644 .idea/copilot.data.migration.ask2agent.xml create mode 100644 .idea/copilot.data.migration.edit.xml create mode 100644 .idea/laravel-idea.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/cli.iml b/.idea/cli.iml new file mode 100644 index 0000000..118d483 --- /dev/null +++ b/.idea/cli.iml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.agent.xml b/.idea/copilot.data.migration.agent.xml new file mode 100644 index 0000000..4ea72a9 --- /dev/null +++ b/.idea/copilot.data.migration.agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.ask.xml b/.idea/copilot.data.migration.ask.xml new file mode 100644 index 0000000..7ef04e2 --- /dev/null +++ b/.idea/copilot.data.migration.ask.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.ask2agent.xml b/.idea/copilot.data.migration.ask2agent.xml new file mode 100644 index 0000000..1f2ea11 --- /dev/null +++ b/.idea/copilot.data.migration.ask2agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.edit.xml b/.idea/copilot.data.migration.edit.xml new file mode 100644 index 0000000..8648f94 --- /dev/null +++ b/.idea/copilot.data.migration.edit.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/laravel-idea.xml b/.idea/laravel-idea.xml new file mode 100644 index 0000000..bd941a4 --- /dev/null +++ b/.idea/laravel-idea.xml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..6fcc0dc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..08df812 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/composer.json b/composer.json index 005c77c..bdad976 100644 --- a/composer.json +++ b/composer.json @@ -15,8 +15,8 @@ ], "minimum-stability": "stable", "require": { - "php": "^8.0", - "symfony/console": "^5.0|^6.0", + "php": "^8", + "symfony/console": "^6.4", "nunomaduro/termwind": "^1.15" }, "bin": [ From 2baeacf50969d2ddcece41439a40a50cfe6e5a24 Mon Sep 17 00:00:00 2001 From: Robin de Laater Date: Mon, 22 Dec 2025 10:22:58 +0100 Subject: [PATCH 2/2] Support 8.0 and up --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bdad976..7928f11 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ ], "minimum-stability": "stable", "require": { - "php": "^8", + "php": "^8.0", "symfony/console": "^6.4", "nunomaduro/termwind": "^1.15" },