web-developer-in-bangalore / composer-test-pack-by-shafeek
此包已被废弃且不再维护。未建议替代包。
此库允许您使用composer库调用“Hello World”
dev-master
2020-04-14 13:33 UTC
This package is not auto-updated.
Last update: 2020-04-14 13:53:54 UTC
README
链接: https://www.w3resource.com/php/composer/create-publish-and-use-your-first-composer-package.php
这是一个“Hello World”composer测试库包
使用Composer安装
composer require web-developer-in-bangalore/composer-test-pack-by-shafeek:dev-master
使用方法
require_once DIR . '/vendor/autoload.php';
use web_developer_in_bangalore\composer_test_pack_by_shafeek\Index;
$greeting = new Index();
echo $greeting->greet("Hello Composer");