RESAZIP-PC\resaz

update

1 +/vendor/
2 +/.idea/
3 +/.vscode/
4 +*.log
5 +.DS_Store
6 +Thumbs.db
...@@ -12,12 +12,12 @@ ...@@ -12,12 +12,12 @@
12 ``` 12 ```
13 # we use master branch 13 # we use master branch
14 # if has any changes it will request to last commit of Master branch default 14 # if has any changes it will request to last commit of Master branch default
15 -composer require pvduc/daito-utils:dev-master 15 +composer require daito/lib:dev-master
16 ``` 16 ```
17 17
18 #### **Note**: 18 #### **Note**:
19 19
20 If package changes, to project updates new changes 20 If package changes, to project updates new changes
21 ``` 21 ```
22 -composer update pvduc/daito-utils:dev-master 22 +composer update daito/lib:dev-master
23 ``` 23 ```
...\ No newline at end of file ...\ No newline at end of file
......
1 { 1 {
2 - "name": "daitovn/tools", 2 + "name": "daito/lib",
3 "description": "A description of your package", 3 "description": "A description of your package",
4 "type": "library", 4 "type": "library",
5 "autoload": { 5 "autoload": {
6 "psr-4": { 6 "psr-4": {
7 - "DaitoVn\\Tools\\": "src/" 7 + "Daito\\Lib\\": "src/"
8 } 8 }
9 }, 9 },
10 "require": { 10 "require": {
11 - "php": ">=7.3" 11 + "php": "^8.0"
12 } 12 }
13 } 13 }
......
1 <?php 1 <?php
2 -namespace DaitoVn\Tools; 2 +namespace Daito\Lib;
3 3
4 class StringUtils { 4 class StringUtils {
5 public static function toUpper($text){ 5 public static function toUpper($text){
......