Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Satini_pvduc
/
daito-utils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Satini_pvduc
2025-01-03 13:23:22 +0700
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commit
eb0039c33c0899bc769e9741262c2f71f00aa31c
eb0039c3
1 parent
1866baed
init
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
composer.json
src/StringUtils.php
composer.json
0 → 100644
View file @
eb0039c
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
+
}
src/StringUtils.php
0 → 100644
View file @
eb0039c
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
Please
register
or
sign in
to post a comment