diff --git a/README.md b/README.md index 078e705..81f0914 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ phputils is a share utility library ## Usage ```php -use Talmp\Phputils\StrUtil; +use Db29\Phputils\StrUtil; // normal case str_replace([1, 2], [2, 3], '12'); // '33' @@ -28,7 +28,7 @@ Need mbstring extension Use the package manager [composer](https://getcomposer.org/) to install phputils. ```bash -composer require talmp/phputils +composer require db29/phputils ``` ## Testing diff --git a/composer.json b/composer.json index 953c6a6..9407cb8 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { - "name": "talmp/phputils", - "description": "TALMP utility php lib", + "name": "db29/phputils", + "description": "DB29 utility php lib", "type": "library", "require-dev": { "phpunit/phpunit": "^9.5.20", @@ -10,7 +10,7 @@ "license": "MIT", "autoload": { "psr-4": { - "Talmp\\Phputils\\": "src/" + "Db29\\Phputils\\": "src/" } }, "require": { diff --git a/src/BashCharEscape.php b/src/BashCharEscape.php index cf1b5c7..e51d921 100644 --- a/src/BashCharEscape.php +++ b/src/BashCharEscape.php @@ -1,6 +1,6 @@