PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Alun   Flexible Laravel Migration Seeder   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Flexible Laravel Migration Seeder
Provide a Laravel migration data seeder class
Author: By
Last change:
Date: 24 days ago
Size: 1,459 bytes
 

Contents

Class file image Download
{ "name": "garanaw/seedable-migrations", "description": "Allows to self seed migrations in a more controlled way", "keywords": ["laravel", "seed", "seeder", "migrations", "migration", "database", "seedable", "seedable-migrations"], "type": "library", "license": "MIT", "authors": [ { "role": "Developer", "name": "Pablo Villalba", "email": "garanaw@gmail.com" } ], "require": { "php": ">=8.2", "illuminate/console": "^10.34", "illuminate/database": "^10.34", "illuminate/support": "^10.34" }, "autoload": { "psr-4": { "Garanaw\\SeedableMigrations\\": "src/" } }, "autoload-dev": { "psr-4": { "Garanaw\\SeedableMigrations\\Tests\\": "tests/" } }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "preferred-install": "dist", "optimize-autoloader": true, "allow-plugins": { "kylekatarnls/update-helper": true, "pestphp/pest-plugin": true } }, "extra": { "laravel": { "providers": [ "Garanaw\\SeedableMigrations\\SeedableMigrationsServiceProvider" ] } }, "require-dev": { "laravel/pint": "^1.13", "orchestra/testbench": "^8.15", "pestphp/pest": "^2.26" } }