Skip to content

Commit

Permalink
Fix Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
IlhamriSKY committed Oct 2, 2024
1 parent 9261308 commit bf2c136
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To install this package, follow these steps:
2. Once installed, you can start using the `Api` class to interact with the PDDIKTI API. Here's an example of how to use the package:
```php
use IlhamriSKY\PddiktiApi\Api;
use Ilhamrisky\PddiktiApi\Api;
$pddiktiapi = new Api();
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "IlhamriSKY/pddiktiapi",
"name": "Ilhamrisky/pddiktiapi",
"description": "Laravel package for PDDIKTI API",
"type": "library",
"license": "MIT",
Expand All @@ -8,18 +8,18 @@
},
"autoload": {
"psr-4": {
"IlhamriSKY\\PddiktiApi\\": "src/"
"Ilhamrisky\\PddiktiApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IlhamriSKY\\PddiktiApi\\Tests\\": "tests/"
"Ilhamrisky\\PddiktiApi\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"IlhamriSKY\\PddiktiApi\\PddiktiApiServiceProvider"
"Ilhamrisky\\PddiktiApi\\PddiktiApiServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/Api.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace IlhamriSKY\PddiktiApi;
namespace Ilhamrisky\PddiktiApi;

use Illuminate\Support\Facades\Log;

Expand Down
2 changes: 1 addition & 1 deletion src/Helper.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace IlhamriSKY\PddiktiApi;
namespace Ilhamrisky\PddiktiApi;

use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
Expand Down
2 changes: 1 addition & 1 deletion src/PddiktiApiServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace IlhamriSKY\PddiktiApi;
namespace Ilhamrisky\PddiktiApi;

use Illuminate\Support\ServiceProvider;

Expand Down

0 comments on commit bf2c136

Please sign in to comment.