From 10f1b67fcb2fcfa95af76d4457b94d12d61e2ad2 Mon Sep 17 00:00:00 2001 From: Domagoj Franc Date: Sun, 10 Sep 2023 10:33:54 +0200 Subject: [PATCH 1/3] Update `phpunit/phpunit` to version `10` --- .gitignore | 1 + composer.json | 4 ++-- phpunit.xml.dist | 60 +++++++++++++++++++++--------------------------- 3 files changed, 29 insertions(+), 36 deletions(-) diff --git a/.gitignore b/.gitignore index 9d0a8e5..2f0d90f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ /vendor .php_cs.cache .phpunit.result.cache +.phpunit.cache .DS_Store Thumbs.db composer.phar diff --git a/composer.json b/composer.json index d60c472..31d4a15 100644 --- a/composer.json +++ b/composer.json @@ -23,8 +23,8 @@ "illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { - "orchestra/testbench": "^6.0", - "phpunit/phpunit": "^9.0" + "orchestra/testbench": "^8.5", + "phpunit/phpunit": "^10.0" }, "suggest": { "jaybizzle/crawler-detect": "Needed if you plan to disable robots tracking" diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 05f3d81..bed0e81 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,36 +1,28 @@ - - - - tests - - - - - ./src - - - - - - - - - - - - - - - + + + + tests + + + + + + + + + + + + + + + + + + + + ./src + + From 227d7dec0690fa07a115b92555c98318366c76a6 Mon Sep 17 00:00:00 2001 From: Kyran Date: Mon, 11 Sep 2023 20:50:34 +1000 Subject: [PATCH 2/3] Update composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 31d4a15..95aa49b 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ ], "require": { "php": "^7.4 || ^8.0 || ^8.1", - "illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0" + "illuminate/support": "^7.* || ^8.* || ^9.* || ^10.*" }, "require-dev": { - "orchestra/testbench": "^8.5", - "phpunit/phpunit": "^10.0" + "orchestra/testbench": "^6.* || 7.* || ^8.*", + "phpunit/phpunit": "^9.* || ^10.*" }, "suggest": { "jaybizzle/crawler-detect": "Needed if you plan to disable robots tracking" From 6007cd28af1547c4c4148fb8dcf800c9c87c6c7c Mon Sep 17 00:00:00 2001 From: Kyran Date: Mon, 11 Sep 2023 20:52:08 +1000 Subject: [PATCH 3/3] Update composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 95aa49b..096d796 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ ], "require": { "php": "^7.4 || ^8.0 || ^8.1", - "illuminate/support": "^7.* || ^8.* || ^9.* || ^10.*" + "illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { - "orchestra/testbench": "^6.* || 7.* || ^8.*", - "phpunit/phpunit": "^9.* || ^10.*" + "orchestra/testbench": "^6.0 || 7.0 || ^8.5", + "phpunit/phpunit": "^9.0 || ^10.0" }, "suggest": { "jaybizzle/crawler-detect": "Needed if you plan to disable robots tracking"