Skip to content

Commit

Permalink
update namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby Allen committed Dec 28, 2023
1 parent 4ca52b7 commit a140fa0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "tobya/fixsqldate",
"name": "tobya/laravel-mssql-dateformat",
"description": "Check and set MSSQL universal date format used by Laravel to 'Ymd' to ensure universal compatibility",
"type": "laravel-package",
"license": "MIT",
"autoload": {
"psr-4": {
"Tobya\\Fixsqldate\\": "src/"
"Tobya\\MSSQLDateformat\\": "src/"
}
},
"authors": [
Expand All @@ -20,7 +20,7 @@
"extra": {
"laravel": {
"providers": [
"Tobya\\Fixsqldate\\Providers\\MSSQLUniversalDateProvider"
"Tobya\\MSSQLDateformat\\Providers\\MSSQLUniversalDateProvider"
]

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

namespace Tobya\FixSQLDate\Console;
namespace Tobya\MSSQLDateformat\Console;


use Illuminate\Console\Command;
Expand Down
4 changes: 2 additions & 2 deletions src/Providers/MSSQLUniversalDateProvider.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Tobya\Fixsqldate\Providers;
namespace Tobya\MSSQLDateformat\Providers;



use Tobya\FixSQLDate\Console\CheckSQLGrammerDate;
use Tobya\MSSQLDateformat\Console\CheckSQLGrammerDate;

class MSSQLUniversalDateProvider extends \Illuminate\Support\ServiceProvider
{
Expand Down

0 comments on commit a140fa0

Please sign in to comment.