socialethar/mylibrary

There is no license information available for the latest version (v1.0.0) of this package.

A simple library that introduces a name.

v1.0.0 2024-07-06 03:49 UTC

This package is auto-updated.

Last update: 2025-04-06 05:50:16 UTC


README

Ethar

It is a test project. 100% working

Developer- Mohammed Ethar

Use case

require_once "vendor/autoload.php";
use MyLibrary\MyName;
MyName::introduce();

Application main composer.json

"require": {
        "socialethar/mylibrary": "^1.0"
    },

composer-raw-project\vendor\socialethar\mylibrary ->Library root directory

composer-raw-project\vendor\composer->autoload_psr4.php

return array(
    'MyLibrary\\' => array($vendorDir . '/socialethar/mylibrary/src'), //eta holo library dir
    'App\\' => array($baseDir . '/app'),
);