diff --git a/README.md b/README.md index 8f53ba5..9e4c657 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This was forked from https://github.com/anam-hossain/aba due to an issue with st `Aba` is available via Composer ```bash -$ composer require joelwmale/aba-generator +$ composer require abwebdevelopers/aba-generator ``` ## Integrations @@ -30,13 +30,13 @@ After you have installed the `Aba`, open the `config/app.php` file which is incl In the `$providers` array add the following service provider. ```php -Joelwmale\AbaGenerator\AbaServiceProvider::class +ABWebDevelopers\AbaGenerator\AbaServiceProvider::class ``` Add the facade of this package to the `$aliases` array. ```php -'Aba' => Joelwmale\AbaGenerator\Facades\Aba::class, +'Aba' => ABWebDevelopers\AbaGenerator\Facades\Aba::class, ``` You can now use this facade in place of instantiating the converter yourself in the following examples. @@ -44,7 +44,7 @@ You can now use this facade in place of instantiating the converter yourself in ## Usage ```php -use Joelwmale\AbaGenerator\Aba; +use ABWebDevelopers\AbaGenerator\Aba; $aba = new Aba(); diff --git a/composer.json b/composer.json index 98dd606..caa1579 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "joelwmale/aba-generator", + "name": "abwebdevelopers/aba-generator", "description": "Provides a simple way to generate an ABA file which is used by banks to allow for batch transactions.", "keywords": [ "ABA file", @@ -9,7 +9,7 @@ "PHP", "Laravel" ], - "homepage": "https://github.com/joelwmale/aba-generator", + "homepage": "https://github.com/abwebdevelopers/aba-generator", "license": "MIT", "authors": [ { @@ -29,12 +29,12 @@ }, "autoload": { "psr-4": { - "Joelwmale\\AbaGenerator\\" : "src/" + "ABWebDevelopers\\AbaGenerator\\" : "src/" } }, "autoload-dev": { "psr-4": { - "Joelwmale\\AbaGenerator\\Test\\": "tests" + "ABWebDevelopers\\AbaGenerator\\Test\\": "tests" } } } diff --git a/src/Aba.php b/src/Aba.php index a8725a6..f104142 100644 --- a/src/Aba.php +++ b/src/Aba.php @@ -1,8 +1,8 @@