minhvq/custom-string

Custom string package

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/minhvq/custom-string

dev-master 2022-05-31 09:05 UTC

This package is auto-updated.

Last update: 2025-10-29 03:25:01 UTC


README

Add string "HELLO" to the first input string

Installation

This project using composer.

$ composer require minhvq/custom-string

Declare autoload namespace in composer.json

"autoload": {
    "psr-4": {
        ...
        "MinhVuQuang\\CustomString\\": "vendor/minhvq/custom-string/src/"
    },
    ...
},

And run

$ composer dumpautoload 

Finally, add CustomStringServiceProvider in config/app.php

MinhVuQuang\CustomString\CustomStringServiceProvider::class,

Usage

echo MinhVuQuang\CustomString\Facades\CustomString::generate(Illuminate\Support\Str::random(40));