thtg88/laravel-db-scaffold-commands
最新稳定版本:v0.7.0
Composer 安装命令:
composer require thtg88/laravel-db-scaffold-commands
包简介
Scaffold a DB with the given Laravel Artisan commands.
README 文档
README
Create and drop a MySQL or PostgreSQL DB with the given Laravel Artisan commands.
Installation
composer require --dev thtg88/laravel-db-scaffold-commands
Usage
Create Database
php artisan db:create database_name
This will use the connection details specified in your .env file.
Drop Database
php artisan db:drop
This will use the connection details specified in your .env file, including the database name.
Development
Clone the repo
# clone the repo
$ git clone https://github.com/thtg88/laravel-db-scaffold-commands.git
Add thhtg88/laravel-db-scaffold-commands as a dependency of your API project in composer.json:
{
...
"repositories": [
{
"type": "path",
"url": "../laravel-db-scaffold-commands"
}
],
"require": {
...
"thtg88/laravel-db-scaffold-commands": "*"
},
...
}
Next from your terminal run:
# Run composer update to bring in Laravel DB Scaffold Commands as dependancy
composer update
Tests
Laravel DB Scaffold Commands uses PHPUnit for testing.
You can run the whole tests suite using:
composer run-script test # or composer test # or ./vendor/bin/phpunit
License
Laravel DB Scaffold Commands is open-sourced software licensed under the MIT license.
统计信息
- 总下载量: 10.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-12-29