-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1013 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 1013 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "laravel-shift/factory-generator",
"description": "Generate factories from existing models",
"type": "package",
"license": "MIT",
"keywords": [
"laravel",
"factory",
"model",
"testing"
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0",
"fakerphp/faker": "^1.9.1"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.5|^11.5.3"
},
"autoload": {
"psr-4": {
"Shift\\FactoryGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"App\\": "vendor/orchestra/testbench-core/laravel/app"
},
"exclude-from-classmap": [
"tests/migrations"
]
},
"extra": {
"laravel": {
"providers": [
"Shift\\FactoryGenerator\\FactoryGeneratorServiceProvider"
]
}
}
}