Download the PHP package sukohi/ghost without Composer
On this page you can find all versions of the php package sukohi/ghost. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor sukohi
Package ghost
Short Description A Laravel package to generate a dummy model instance.
License MIT
Package ghost
Short Description A Laravel package to generate a dummy model instance.
License MIT
Please rate this library. Is it a good library?
Informations about the package ghost
Ghost
A Laravel package to generate a dummy model instance.
Installation
Execute composer command.
composer require sukohi/ghost:2.*
Register the service provider in app.php
'providers' => [
...Others...,
Sukohi\Ghost\GhostServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'Ghost' => Sukohi\Ghost\Facades\Ghost::class,
]
Usage
$dummy_model = \Ghost::make();
echo $dummy_model->title; // (Empty)
echo $dummy_model->description; // (Empty)
echo $dummy_model->created_at; // (Empty)
License
This package is licensed under the MIT License.
Copyright 2016 Sukohi Kuhoh
All versions of ghost with dependencies
PHP Build Version
Package Version
Requires
laravel/framework Version
~5.0
The package sukohi/ghost contains the following files
Loading the files please wait ....