-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
85 lines (85 loc) · 2.73 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cable8mm/xeed",
"description": "The Xeed is to generate new model, seed, Nova resource, database seed, factory and migration files for Laravel & Nova based on data from the existing database table.",
"keywords": [
"laravel",
"factory",
"seed",
"migration",
"generator",
"xeed",
"nova"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Sam Lee",
"email": "cable8mm@gmail.com"
}
],
"require": {
"php": "^8.0.2",
"cable8mm/array-flatten": "^1.0",
"doctrine/inflector": "^2.0",
"league/flysystem": "^3.0",
"symfony/console": "^6.0|^7.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0|^12.0"
},
"suggest": {
"php": "`symfony/console` need `^8.0.2` over.",
"cable8mm/array-flatten": "To enable more efficient database schema mapping.",
"doctrine/inflector": "To get a Laravel Model name from a table name.",
"symfony/console": "Console framework to be used.",
"vlucas/phpdotenv": "To read `.env` configuration."
},
"autoload": {
"psr-4": {
"Cable8mm\\Xeed\\": "src/",
"App\\Models\\": "dist/app/Models/",
"Database\\Factories\\": "dist/database/factories/",
"Database\\Seeders\\": "dist/database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Cable8mm\\Xeed\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cable8mm\\Xeed\\Laravel\\XeedServiceProvider"
],
"aliases": {
"Xeed": "Cable8mm\\Xeed\\Laravel\\XeedFacade"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "./vendor/bin/phpunit tests",
"testpack": "vendor/bin/testbench package:test",
"testgen": "./vendor/bin/phpunit --testsuite Generator",
"lint": "./vendor/bin/pint",
"inspect": "./vendor/bin/pint --test",
"apidoc": "rm -rf build; rm -rf cache; doctum.phar update doctum.php --output-format=github --no-ansi --no-progress -v;",
"opendoc": "open build/index.html"
}
}