Download the PHP package spaceboy/datex without Composer
On this page you can find all versions of the php package spaceboy/datex. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package datex
Datex
Simple command line tool for rapid development of database-related routines work (creating entity, form and model PHP classes/files) under PHP/Nette framework environment.
1 Installation
1.1 Install tool
In command line, type
1.2 Copy script file
Copy file datex.php
from
to
1.3 Register service DatexModel
In APP_ROOT/config/services.neon
add service into service list:
2 Configuration
2.1 Add configuration parameters
In APP_ROOT/config/services.neon
add datex
section into parameters
:
2.2 Connect to database
Before first run, make sure your database connection is correctly set.
In database
section of your config file (APP_ROOT/config/local.neon
or APP_ROOT/config/common.neon
) should be your DB connection described somehow like that:
Use script
In command line terminal, go to the APP_ROOT/bin
directory and try very first run:
If anything goes wrong, clear the cache and try again.
Works? Great. You can use the script in simple, classic way:
Commands:
tables
Writes list of accessible tables and views in database.
columns
Writes list of columns of database table.
entity
Creates PHP entity file based on colums of database table.
The file is placed in default directory declared in config section, or specified if file parameter of script.
If the target file already exists, script halts unless the ---overwite
(-o
) switch is used.
If the --screen
(-s
) switch is used, source code of PHP file is shown on screen and no file is written.
form
Works same way as entity command, except that creates nette form file based on colums of database table.
model
Works same way as entity and form command, except that creates PHP model file based on colums of database table.
All versions of datex with dependencies
nette/bootstrap Version ^3.0
nette/database Version ^3.1
nette/forms Version ^3.1
spaceboy/nette-cli Version ^1.2