Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
code3-dev committed Jul 30, 2024
1 parent c9f60fd commit 04ecd13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ A simple PHP library for downloading videos from YouTube, Instagram, X, and more

## Installation

To install the `httptools/ytdl` library, you need to use Composer. Run the following command:
To install the `pira/ytdl` library, you need to use Composer. Run the following command:

```bash
composer require httptools/ytdl
composer require pira/ytdl
```

## Usage
Expand All @@ -26,7 +26,7 @@ After installing the library, you can start using it in your PHP project. Here's
```php
<?php

use httptools\YTDL;
use pira\YTDL;

require_once 'vendor/autoload.php';

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "httptools/ytdl",
"name": "pira/ytdl",
"description": "A simple PHP library for Download Videos from YouTube, Instagram, X and etc.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"httptools\\": "src/"
"pira\\": "src/"
}
},
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace httptools;
namespace pira;

/**
* Client - A simple PHP Class for making HTTP requests using cURL
Expand Down
2 changes: 1 addition & 1 deletion src/YTDL.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace httptools;
namespace pira;

use Exception;

Expand Down

0 comments on commit 04ecd13

Please sign in to comment.