composer.json
{
"name": "collective-thinking/laravel-seed",
"description": "Run your seeds like you run your migrations.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Khalyomede",
"email": "khalyomede@gmail.com"
},
{
"name": "Collective Thinking",
"email": "tech@collective-thinking.com"
}
],
"keywords": [
"laravel",
"seed",
"migration",
"batch"
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1.0",
"laravel/framework": "8.*|9.*|10.*"
},
"autoload": {
"psr-4": {
"CollectiveThinking\\LaravelSeed\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"CollectiveThinking\\LaravelSeed\\LaravelSeedServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.13.10",
"phpstan/phpstan": "^1.10.57",
"phpunit/phpunit": "^10.5.0",
"phpunit/php-code-coverage": "^10.1.0",
"orchestra/testbench": "^8.21.1",
"nunomaduro/collision": "^7.10.0",
"larastan/larastan": "^2.8.1"
},
"scripts": {
"lint": "pint --test",
"format": "pint",
"analyze": "phpstan analyze",
"test": "testbench package:test",
"test-coverage": "phpunit --coverage-clover build/logs/clover.xml"
},
"autoload-dev": {
"psr-4": {
"CollectiveThinking\\LaravelSeed\\Tests\\": "tests/"
}
}
}