Satini_pvduc

init

1 +{
2 + "name": "pvduc/daito-utils",
3 + "description": "A description of your package",
4 + "type": "library",
5 + "autoload": {
6 + "psr-4": {
7 + "Pvduc\\DaitoUtils\\": "src/"
8 + }
9 + },
10 + "require": {
11 + "php": ">=7.3"
12 + }
13 +}
1 +<?php
2 +namespace Pvduc\DaitoUtils;
3 +
4 +class StringUtils {
5 + public static function toUpper($text){
6 + return strtoupper($text);
7 + }
8 +}
...\ No newline at end of file ...\ No newline at end of file