All Projects → eklundkristoffer → seedster

eklundkristoffer / seedster

Licence: other
Register laravel seeds from a package

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to seedster

react16-seed-with-apollo-graphql-scss-router4-ssr-tests-eslint-prettier-docker-webpack3-hot
Seed to create your own project using React with Apollo GraphQL client
Stars: ✭ 19 (-13.64%)
Mutual labels:  seed
webgl-seed
🌐🌱 A starter repo for building WebGL applications.
Stars: ✭ 41 (+86.36%)
Mutual labels:  seed
sms
Simple SMS Gateway Package for sending short text messages from your Application. Facade for Laravel 5(Updated to work with Laravel 5.5).Currently supported Gateways Clickatell, MVaayoo, Gupshup, SmsAchariya, SmsCountry, SmsLane, Nexmo, Mocker / Any HTTP/s based Gateways are supported by Custom Gateway. Log gateway can be used for testing.
Stars: ✭ 41 (+86.36%)
Mutual labels:  laravel-package
laravel-blade-on-demand
Compile Blade templates in memory
Stars: ✭ 36 (+63.64%)
Mutual labels:  laravel-package
reports
UI for created and download reports in Laravel
Stars: ✭ 13 (-40.91%)
Mutual labels:  laravel-package
Nova-Dark-Theme
A dark theme for Laravel Nova
Stars: ✭ 72 (+227.27%)
Mutual labels:  laravel-package
laravel-dacapo
Laravel migration support tool, Always generate the latest migration files on schema.yml
Stars: ✭ 88 (+300%)
Mutual labels:  laravel-package
rememberable
Laravel Traits for fast integration of model caching
Stars: ✭ 28 (+27.27%)
Mutual labels:  laravel-package
adminetic
Admin starter kit with user, role and permission, activity, settings and preference management along with CRUD, ACL, BREAD Permission, Repo Pattern, SuperAdmin Generator
Stars: ✭ 19 (-13.64%)
Mutual labels:  laravel-package
Bitcoin-Stealer
Generate random bitcoin wallets, private keys (seeds) and then check if they match a wallet that contains some kind of balance, and then take it. Node.js
Stars: ✭ 61 (+177.27%)
Mutual labels:  seed
LaravelSapient
Sapient Integration for Laravel
Stars: ✭ 13 (-40.91%)
Mutual labels:  laravel-package
angular-routing
Angular 13 Example Routing
Stars: ✭ 21 (-4.55%)
Mutual labels:  seed
getui
Getui sdk package for laravel.
Stars: ✭ 19 (-13.64%)
Mutual labels:  laravel-package
laravel-string-similarities
Compare two string and get a similarity percentage
Stars: ✭ 54 (+145.45%)
Mutual labels:  laravel-package
SharpLoader
🔮 [C#] Source code randomizer and compiler
Stars: ✭ 36 (+63.64%)
Mutual labels:  seed
csv
No description or website provided.
Stars: ✭ 47 (+113.64%)
Mutual labels:  laravel-package
framework
The target of this framework is to help in all the needs of a full featured API REST, from top to bottom, and at the same time having the best possible performance and security.
Stars: ✭ 88 (+300%)
Mutual labels:  seed
verify
Laravel package to verify users with a one-time password (OTP)
Stars: ✭ 25 (+13.64%)
Mutual labels:  laravel-package
video-downloader
Video Downloader for Facebook.
Stars: ✭ 63 (+186.36%)
Mutual labels:  laravel-package
node-starter-kit
Node.js / GraphQL project template pre-configured with TypeScript, PostgreSQL, login flow, transactional emails, unit tests, CI/CD workflow.
Stars: ✭ 76 (+245.45%)
Mutual labels:  seed

Latest Stable Version Total Downloads License: MIT

seedster

Register laravel seeds from a package

Installation

require the project using Composer:

composer require eklundkristoffer/seedster

or manually update your require block and run composer update

{
    "require": {
        "eklundkristoffer/seedster": "^4.0"
    }
}

Usage

You can now register a seed from any service provider

use Mypackage\Database\Seeds\PostsTableSeeder;
use Mypackage\Database\Seeds\UsersTableSeeder;

public function register()
{
    $this->app['seed.handler']->register(
        UsersTableSeeder::class
    );

    // Or register an array of seeds
    $this->app['seed.handler']->register(
        [UsersTableSeeder::class, PostsTableSeeder::class, ...]
    );
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].