From 5c08a5acbd0b68742355d0fe687317f032d38f18 Mon Sep 17 00:00:00 2001 From: Renovate Date: Mon, 21 Apr 2025 21:08:35 +0000 Subject: [PATCH 1/3] chore(deps): update dependency squizlabs/php_codesniffer to v3.12.2 --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index a8b8980..89a5615 100644 --- a/composer.lock +++ b/composer.lock @@ -1648,16 +1648,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.11.3", + "version": "3.12.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10" + "reference": "6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10", - "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa", + "reference": "6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa", "shasum": "" }, "require": { @@ -1724,11 +1724,11 @@ "type": "open_collective" }, { - "url": "https://thanks.dev/phpcsstandards", + "url": "https://thanks.dev/u/gh/phpcsstandards", "type": "thanks_dev" } ], - "time": "2025-01-23T17:04:15+00:00" + "time": "2025-04-13T04:10:18+00:00" }, { "name": "symfony/config", From d0e2337defe31c931ebdf2211500713900a08987 Mon Sep 17 00:00:00 2001 From: genuineparts Date: Thu, 1 May 2025 11:57:40 +0200 Subject: [PATCH 2/3] 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 3/3] 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/",