From 03011a4385c50f022a8385f4f531f129e24eb7be Mon Sep 17 00:00:00 2001 From: Renovate Date: Fri, 18 Apr 2025 18:07:44 +0000 Subject: [PATCH 1/4] fix(deps): update dependency psr/log to v1.1.4 --- composer.lock | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index c963b1f..a8b8980 100644 --- a/composer.lock +++ b/composer.lock @@ -370,16 +370,16 @@ }, { "name": "psr/log", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -403,7 +403,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -413,7 +413,10 @@ "psr", "psr-3" ], - "time": "2020-03-23T09:12:05+00:00" + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, + "time": "2021-05-03T11:20:27+00:00" }, { "name": "ralouphie/getallheaders", From 1edd878b285f08b5e4022f85731fb5357aab0ae2 Mon Sep 17 00:00:00 2001 From: Renovate Date: Fri, 18 Apr 2025 18:08:56 +0000 Subject: [PATCH 2/4] fix(deps): update dependency psr/log to v3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d40a03d..9f3ecb8 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.5", - "psr/log": "^1.1", + "psr/log": "^3.0", "symfony/process": "^4.0|^5.0" }, "require-dev": { From d0e2337defe31c931ebdf2211500713900a08987 Mon Sep 17 00:00:00 2001 From: genuineparts Date: Thu, 1 May 2025 11:57:40 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 04d3a6e..24ab756 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ This library lets you extract a video URL from a webpage by providing a wrapper for [youtube-dl](https://ytdl-org.github.io/youtube-dl/index.html). -It is primarily used by [AllTube Download](https://github.com/Rudloff/alltube). +It is primarily used by [AllTube Download](https://code.ehwurscht.at/genuineparts/alltube). You can install it with: ```bash -composer require kumi/alltube-library +composer require genuineparts/alltube-library ``` You can then use it in your PHP code: @@ -24,5 +24,3 @@ $video = $downloader->getVideo('https://www.youtube.com/watch?v=dQw4w9WgXcQ'); $video->getUrl(); ``` -You can also have a look at -this [example project](https://github.com/Rudloff/alltube-example-project). From 5677551b3fb20c0b19cb5639fdceb29ebe8ad783 Mon Sep 17 00:00:00 2001 From: genuineparts Date: Thu, 1 May 2025 13:24:28 +0200 Subject: [PATCH 4/4] fix name --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d40a03d..535b4b4 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "kumi/alltube-library", + "name": "genuineparts/alltube-library", "description": "PHP wrapper for youtube-dl", "license": "GPL-3.0-only", "homepage": "http://alltubedownload.net/",