-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 775 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 775 Bytes
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
{
"name": "thedoctor0/laravel-factory-generator",
"description": "Automatically generate Laravel factories for your models.",
"keywords": [
"laravel",
"factory",
"generator",
"tests",
"factories"
],
"license": "MIT",
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/console": "^10.0|^11.0|^12.0",
"illuminate/filesystem": "^10.0|^11.0|^12.0"
},
"autoload": {
"psr-4": {
"TheDoctor0\\LaravelFactoryGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TheDoctor0\\LaravelFactoryGenerator\\FactoryGeneratorServiceProvider"
]
}
}
}