santosh / hello-world-package
This library will return string hellow world;
1.0
2020-07-13 01:03 UTC
This package is auto-updated.
Last update: 2025-04-13 13:15:23 UTC
README
Step to use the package
- Create A New Folder.
- open cmd/git bash and run "composer require santosh/hello-world-package" command.
- create new PHP file and paste below code in the file.
- run index.php.
require_once './vendor/autoload.php'; $objHelloWorld = new \HelloWorld\HelloWorld(); echo $objHelloWorld->display();