-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 999 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "khalyomede/laravel-seed",
"description": "Run your seeds like you run your migrations.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Khalyomede",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"seed",
"migration",
"batch"
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"jawira/case-converter": "3.*",
"laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*"
},
"autoload": {
"psr-4": {
"Khalyomede\\LaravelSeed\\": "src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.0.2",
"phpstan/phpstan": "0.12.96"
},
"scripts": {
"lint": "php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "php-cs-fixer --using-cache=no --allow-risky=yes fix",
"analyse": "phpstan analyse"
}
}