-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.78 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.78 KB
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
{
"name": "robinncode/db_craft",
"description": "DB Craft is a CodeIgniter4 Seeder, Migration Generator. \n\n Automatic Migration Generation: DB-Craft provides a simple command-line interface to generate migration files automatically based on the connected database. This feature allows developers to keep track of database schema changes and easily apply them to different environments.\n\n Table-Specific Migrations: Developers can also generate migration files for specific tables, providing granular control over database changes. This flexibility allows for efficient database management and versioning.\n\n Seeding Support: DB-Craft includes functionality to generate seeders, enabling developers to populate their database with initial data. This feature is especially useful for setting up sample data or populating reference tables.",
"type": "library",
"version": "1.2.1",
"license": "MIT",
"authors": [
{
"name": "Mohammad Shahin Mia Robin",
"email": "msmrobin518@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Robinncode\\DbCraft\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">= 7.2"
},
"prefer-stable": true,
"keywords": [
"Codeigniter4",
"Migration",
"Seeder",
"Connected Database",
"PHP",
"CLI Tool"
],
"homepage": "https://github.com/robinNcode/db_craft",
"repository": "https://github.com/robinNcode/db_craft.git",
"support": {
"documentation": "https://github.com/robinNcode/db_craft/blob/master/README.md",
"email": "msmrobin518@gmail.com",
"issues": "https://github.com/robinNcode/db_craft/issues"
},
"require-dev": {
"laravel/pint": "^1.22",
"rector/rector": "^2.0"
}
}