PHPackages                             edrands/laravel-seeder - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. edrands/laravel-seeder

AbandonedArchivedProject[Utility &amp; Helpers](/categories/utility)

edrands/laravel-seeder
======================

The Enhanced Laravel Project Seeder gets new Laravel projects up-and-running fast. Features self-contained testing (no pear or global testing package required).

v0.9.0(11y ago)2551[30 issues](https://github.com/edrands/laravel-seeder/issues)MITPHPPHP &gt;=5.4.0

Since Jul 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/edrands/laravel-seeder)[ Packagist](https://packagist.org/packages/edrands/laravel-seeder)[ RSS](/packages/edrands-laravel-seeder/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (7)Versions (32)Used By (0)

DEPRECATED — Enhanced Laravel Project Seeder
============================================

[](#deprecated--enhanced-laravel-project-seeder)

This project is no longer supported. Since a few people have starred, watched and forked this repo, I won't just outright remove it for now.

While not a free replacement, if you're looking for a way to quickly start a new Laravel project, try [Laravel Spark](https://spark.laravel.com/).

[![No Maintenance Intended](https://camo.githubusercontent.com/d904056147052e22d8e1c7f46bb50293ed2aeb4c43ead9a2d0cf7a48b46d0562/687474703a2f2f756e6d61696e7461696e65642e746563682f62616467652e737667)](http://unmaintained.tech/)[![Total Downloads](https://camo.githubusercontent.com/ce0044ee32f0084d0d82968b7816aee386054ab261ea177f0168b6e91b531940/68747470733a2f2f706f7365722e707567782e6f72672f656472616e64732f6c61726176656c2d7365656465722f646f776e6c6f6164732e737667)](https://packagist.org/packages/edrands/laravel-seeder)[![License](https://camo.githubusercontent.com/7ccd6a1a8a694b4072bb26131e35d782bd3d47066f43e0b1dcd9b3c8243c01a8/68747470733a2f2f706f7365722e707567782e6f72672f656472616e64732f6c61726176656c2d7365656465722f6c6963656e73652e737667)](https://packagist.org/packages/edrands/laravel-seeder)

About the Enhanced Laravel Project Seeder
-----------------------------------------

[](#about-the-enhanced-laravel-project-seeder)

After starting a few projects with Laravel, I realized I was repeating myself a lot in my first few steps, setting up the same things just to get going. This project is meant to alleviate that problem, so I can get rolling on the actual project fast.

This package is not meant to be a dependency for other projects. It's meant to be used with Composer's `create-project` command.

This is meant mostly for my benefit, and in some regards is highly opinionated. But if it's helpful to you, you're welcome to start your own Laravel based projects with it, or fork it and customize it to your needs.

There's a significant change to the layout from the base Laravel install. In anticipation of making more advanced projects, I've started following more advanced practices that involve breaking things up far beyond the basic MVC layout. Most of the files have moved out of the `app` directory into `src`. Everything is namespaced, and seperated into composers, observers, repositories, and lots of other parts. I've mostly followed the first part of [Dayle Rees' "Breaking the Mold"](http://daylerees.com/breaking-the-mold).

### What's In This Thing

[](#whats-in-this-thing)

[Laravel](http://laravel.com/), of course. Wouldn't be much of a Laravel project seeder without that. It's version 4.2 right now.

Lots of projects use [Bootstrap](http://getbootstrap.com/) for their front end framework, so version 3.1 of that is included. Also included is [Bootstrapper](https://packagist.org/packages/patricktalmadge/bootstrapper), a Laravel way to generate Bootstrap compatible markup. handy for complex things like menus.

Icons. [Lots of icons](http://fontawesome.io/icons/) via [Font Awesome v4.1](http://fontawesome.io/). 439 at last count.

Testing is important, if for no other reason than the developer's peace of mind. Therefore the seeder includes [Codeception](http://codeception.com/) framework and [Mockery](https://github.com/padraic/mockery). These tools make testing easier, almost fun, and therefore more likely testing will actually happen.

Continuous integration is a great way to automate testing and maintenance. Configuration files for several CI services are included. [Travis](https://travis-ci.org) runs all the tests on push and pull requests. [Scrutinizer](https://scrutinizer-ci.com) runs a variety of scripts to check your code for security holes, sloppy code, and coding style problems. Keep in mind you still need to turn each service on for your project.

IDEs and code editors don't really understand the Laravel facade system, and so they have trouble giving you code suggestions and documentation for a lot of Laravel's functionality. To compensate for this, the [Laravel IDE Helper Generator](https://github.com/barryvdh/laravel-ide-helper) is included. Each time you update in Composer, a helper file is generated that your editor can understand.

[Laravel 4 Debugbar](https://github.com/barryvdh/laravel-debugbar) is enabled in the development environment to provide information overload about what's happening when you load a page.

To help help speed up workflow, there's also [Jeffrey Way's generators](https://github.com/JeffreyWay/Laravel-4-Generators).

I currently use [NetBeans](https://netbeans.org/) as my IDE, so the files for a NetBeans PHP project come along too.

### Installing

[](#installing)

[Composer](http://getcomposer.org) must be installed on your system in order for this to work. But if you're working with Laravel, you probably have it installed all ready anyway.

1. Open a command prompt in the directory where you keep your projects. For example, I'm running Windows and use `c:\development`
2. Now run `composer create-project edrands/laravel-seeder project-name` replacing `project-name` with the name of the directory for all your project's file. This must be a non-existent or empty directory.
3. Wait while Composer automatically downloads the seed, installs all the dependencies, generates an IDE code completion helper, and generates a random hashing key.
4. Follow the steps in `todo.md` in the root directory of your new project.
5. Get working on the specifics of your project.

### Contributing

[](#contributing)

If you'd like to contribute to this project, you can help in the typical GitHub way.

Issues and pull requests should be filed on the [edrands/laravel-seeder](https://github.com/edrands/laravel-seeder) repository.

Please keep in mind that since this seed is meant for the way I work, if you'd like customizations specific to the way you work, your best option is to fork this project and modify from there.

If your issue or pull request is related to Laravel itself, please see below about how to contribute to Laravel.

### License

[](#license)

The Enhanced Laravel Project Seeder is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

About Laravel
-------------

[](#about-laravel)

[![Build Status](https://camo.githubusercontent.com/c59043e0b28eab034f19dabc49c9222c43e3fbe5e0c6bc2837a5c0086132a211/68747470733a2f2f7472617669732d63692e6f72672f6c61726176656c2f6672616d65776f726b2e737667)](https://travis-ci.org/laravel/framework)[![Total Downloads](https://camo.githubusercontent.com/0d805ff1e85e5885804e3e122c6b32411b7139c8a1393436820eb7cc074c9dde/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f646f776e6c6f6164732e737667)](https://packagist.org/packages/laravel/framework)[![Latest Stable Version](https://camo.githubusercontent.com/c5ffcbe113dda06dd38a2844fa16a8a507540c32a89c6e4a737fbde2f1265ed0/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f762f737461626c652e737667)](https://packagist.org/packages/laravel/framework)[![Latest Unstable Version](https://camo.githubusercontent.com/4bb904178557f719deee37986a31a94d471773f68bb0522166672bb077bf8e13/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f762f756e737461626c652e737667)](https://packagist.org/packages/laravel/framework)[![License](https://camo.githubusercontent.com/f45d904953153ca304a2328243d2733e095eee13a631a1f390709885d41dd692/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f6c6963656e73652e737667)](https://packagist.org/packages/laravel/framework)

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching.

Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality. Happy developers make the best code. To this end, we've attempted to combine the very best of what we have seen in other web frameworks, including frameworks implemented in other languages, such as Ruby on Rails, ASP.NET MVC, and Sinatra.

Laravel is accessible, yet powerful, providing powerful tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.

### Official Documentation

[](#official-documentation)

Documentation for the entire framework can be found on the [Laravel website](http://laravel.com/docs).

### Contributing To Laravel

[](#contributing-to-laravel)

All issues and pull requests should be filed on the [laravel/framework](http://github.com/laravel/framework) repository.

### License

[](#license-1)

The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

Example Readme:
---------------

[](#example-readme)

You can delete from here up for your project's readme.

Project Title
=============

[](#project-title)

About
-----

[](#about)

A description of this project, what it's about, what it does, how it works and why the reader should care.

Technologies
------------

[](#technologies)

- [PHP](http://www.php.net/) 5.4+
- [Laravel Framework](http://laravel.com/)

Standards
---------

[](#standards)

Work on this project should strive to adhere to the following standards and models:

- [Semantic Versioning v2.\*](http://semver.org/)

License
-------

[](#license-2)

This project is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

Portions of this project may be subject to other copyrights and licenses.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 99.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~11 days

Recently: every ~1 days

Total

30

Last Release

4344d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/815a29049da3b65576ae48aa30484c7942ae9c124d1ee6ea1422abf54f0ce99c?d=identicon)[edrands](/maintainers/edrands)

---

Top Contributors

[![EdRands](https://avatars.githubusercontent.com/u/884726?v=4)](https://github.com/EdRands "EdRands (312 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")

---

Tags

archiveddeprecatedlaravellaravel-frameworklaravel-seederlaravelprojectseederstarter

###  Code Quality

TestsCodeception

### Embed Badge

![Health badge](/badges/edrands-laravel-seeder/health.svg)

```
[![Health](https://phpackages.com/badges/edrands-laravel-seeder/health.svg)](https://phpackages.com/packages/edrands-laravel-seeder)
```

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341682.2k18](/packages/gehrisandro-tailwind-merge-laravel)[nickurt/laravel-akismet

Akismet for Laravel 11.x/12.x/13.x

97139.6k2](/packages/nickurt-laravel-akismet)[whitecube/laravel-timezones

Store UTC dates in the database and work with custom timezones in the application.

106106.2k](/packages/whitecube-laravel-timezones)[forxer/laravel-gravatar

A library providing easy gravatar integration in a Laravel project.

4235.6k](/packages/forxer-laravel-gravatar)[iteks/laravel-enum

A comprehensive Laravel package providing enhanced enum functionalities, including attribute handling, select array conversions, and fluent facade interactions for robust enum management in Laravel applications.

2516.7k](/packages/iteks-laravel-enum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
