-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.php
35 lines (31 loc) · 961 Bytes
/
config.php
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
<?php
return [
// Paths configuration for migrations and seeds
'paths' => [
// Directory where migration files are stored
'migrations' => './database/migrations',
// Directory where seed files are stored
'seeds' => './database/seeds',
],
// Base class for migrations
'migration_base_class' => 'Zuno\Migration\Migration',
'environments' => [
// Default table to track migrations
'default_migration_table' => 'phinxlog',
// Configuration for the 'Zuno' environment
'Zuno' => [
// Database adapter type
'adapter' => 'mysql',
// Database host
'host' => 'localhost',
// Database name
'name' => 'Zuno',
// Database user
'user' => 'mahedi',
// Database password
'pass' => '123',
// Database port
'port' => '3306'
]
]
];