From a3c30bce7eb95d0c63373426cad06111d3b6bca6 Mon Sep 17 00:00:00 2001 From: Alexander Pankratov Date: Wed, 10 Feb 2021 00:12:47 +0300 Subject: [PATCH 1/6] Fix missing symfony/console dependency --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 440800d..ff8b1fb 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,8 @@ "require-dev": { "monolog/monolog": "^2.0", "phpunit/phpunit": "^9.0", - "symfony/process": "^4.0|^5.0" + "symfony/process": "^4.0|^5.0", + "symfony/console": "^4.0|^5.0" }, "autoload": { "psr-4": { From a649d0a989b148161fd57f95afb565e41ca761ff Mon Sep 17 00:00:00 2001 From: Johann Pardanaud Date: Thu, 21 Oct 2021 10:38:45 +0200 Subject: [PATCH 2/6] Delete FUNDING.yml --- .github/FUNDING.yml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index a6b8113..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,4 +0,0 @@ -# These are supported funding model platforms - -github: [nesk, spekulatius] -custom: ['https://www.paypal.me/johannpardanaud'] From 80751ee70bebb3f8f58e26b93a23e89206ffbaac Mon Sep 17 00:00:00 2001 From: Johann Pardanaud Date: Thu, 13 Oct 2022 23:02:00 +0200 Subject: [PATCH 3/6] Archive the project --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5277109..ec4d900 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ +# 🚨 This project is not maintained anymore + +As I write these lines, it's been nearly two years since the latest release of PuPHPeteer. Despite the enthusiasm around this project, I no longer have the motivation to support its development, mainly because it never really had any use to me. So its time to be honest with you, PuPHPeteer is no longer maintained. + +If you create a fork and plan to maintain it, let me know and I will link it here. + # PuPHPeteer From 4b31b9f3bf125e997ce6cf69fd20d4ee8a2ed1fc Mon Sep 17 00:00:00 2001 From: Harris Raftopoulos Date: Mon, 28 Nov 2022 18:13:40 +0200 Subject: [PATCH 4/6] update composer.json --- composer.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index ff8b1fb..077e541 100644 --- a/composer.json +++ b/composer.json @@ -20,16 +20,22 @@ ], "require": { "php": ">=7.3", - "nesk/rialto": "^1.2.0", - "psr/log": "^1.0", + "nesk/rialto": "dev-dev", + "psr/log": "^1.0|^2.0|^3.0", "vierbergenlars/php-semver": "^3.0.2" }, "require-dev": { "monolog/monolog": "^2.0", "phpunit/phpunit": "^9.0", - "symfony/process": "^4.0|^5.0", - "symfony/console": "^4.0|^5.0" + "symfony/process": "^4.0|^5.0|^6.0", + "symfony/console": "^4.0|^5.0|^6.0" }, + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/sietzekeuning/rialto" + } + ], "autoload": { "psr-4": { "Nesk\\Puphpeteer\\": "src/" From 3f056f09d9dd045f0333334c465fdee63baf4dbd Mon Sep 17 00:00:00 2001 From: Harris Raftopoulos Date: Mon, 28 Nov 2022 18:20:15 +0200 Subject: [PATCH 5/6] update minimum stability --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 077e541..89ebd9c 100644 --- a/composer.json +++ b/composer.json @@ -52,5 +52,7 @@ }, "config": { "sort-packages": true - } + }, + "minimum-stability": "dev", + "prefer-stable" : true } From c467d90a64dac3e43326a0642fa0f9465f25f401 Mon Sep 17 00:00:00 2001 From: Harris Raftopoulos Date: Mon, 28 Nov 2022 18:28:23 +0200 Subject: [PATCH 6/6] update composer.json --- composer.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 89ebd9c..077e541 100644 --- a/composer.json +++ b/composer.json @@ -52,7 +52,5 @@ }, "config": { "sort-packages": true - }, - "minimum-stability": "dev", - "prefer-stable" : true + } }