Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/storyn26383/helloworldpackage
https://github.com/storyn26383/helloworldpackage
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/storyn26383/helloworldpackage
- Owner: storyn26383
- Created: 2015-12-04T06:04:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-04T07:28:57.000Z (almost 9 years ago)
- Last Synced: 2024-04-21T06:41:29.927Z (7 months ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Sasaya Hello World
## Installation
Run the composer require command:
```bash
compsoer require sasaya/helloworld
```Append Sasaya Hello World service provider to `providers` array in `config/app.php`.
```php
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
.../*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
.../*
* Sasaya Service Providers...
*/
Sasaya\HelloWorld\Providers\ServiceProvider::class,
],
```## Getting Started
Run the artisan command:
```bash
php artisan serve
```Then we can open a browser and type `http://localhost:8000` and we would see `Hello World`.