forked from TheDoctor0/laravel-factory-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 814 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
{
"name": "thedoctor0/laravel-factory-generator",
"description": "Automatically generate Laravel factories for your models.",
"keywords": [
"laravel",
"factory",
"generator",
"tests",
"factories"
],
"license": "MIT",
"require": {
"php": ">=7.4",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0",
"doctrine/dbal": "^2.9|^2.10|^3.0"
},
"autoload": {
"psr-4": {
"TheDoctor0\\LaravelFactoryGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TheDoctor0\\LaravelFactoryGenerator\\FactoryGeneratorServiceProvider"
]
}
}
}