Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/zachleigh/yarak

Phalcon devtools
https://github.com/zachleigh/yarak

command-line console database database-seeding devtools migrations model-factory phalcon seeder

Last synced: 3 months ago
JSON representation

Phalcon devtools

Lists

README

        

# Yarak
[![Latest Stable Version](https://poser.pugx.org/zachleigh/yarak/v/stable)](https://packagist.org/packages/zachleigh/yarak)
[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](//packagist.org/packages/zachleigh/yarak)
[![Build Status](https://img.shields.io/travis/zachleigh/yarak/master.svg)](https://travis-ci.org/zachleigh/yarak)
[![Quality Score](https://img.shields.io/scrutinizer/g/zachleigh/yarak.svg)](https://scrutinizer-ci.com/g/zachleigh/yarak/)
[![StyleCI](https://styleci.io/repos/83725289/shield?style=flat)](https://styleci.io/repos/83725289)

*yarak - (Falconry) a state of prime fitness in a falcon*

#### Laravel inspired Phalcon devtools
- Database migrations that rollback step-by-step, reset the database, and refresh the database.
- Model factories for easy test data creation.
- Database seeders that fill your database with a single command.
- Create custom commands in minutes to streamline and personalize your workflow.

## Contents
- [Release Notes](#release-notes)
- [Install](#install)
- [Database](#database)
- [Generating Database Directories And Files](#generating-database-directories-and-files)
- [Model Factories](#model-factories)
- [Defining Factories](#defining-factories)
- [Using The Factory Helper](#using-the-factory-helper)
- [Making Multiple Model Instances](#making-multiple-model-instances)
- [Overriding The Default Attributes](#overriding-the-default-attributes)
- [Using Named Factories](#using-named-factories)
- [Model Relationships](#model-relationships)
- [Database Seeding](#database-seeding)
- [Creating Database Seeders](#creating-database-seeders)
- [Writing Database Seeders](#writing-database-seeders)
- [Using Database Seeders](#using-database-seeders)
- [Migrations](#migrations)
- [Generating Migrations](#generating-migrations)
- [Writing Migrations](#writing-migrations)
- [Creating Tables](#creating-tables)
- [Updating Tables](#updating-tables)
- [The Down Method](#the-down-method)
- [Running Migrations](#running-migrations)
- [Rolling Back Migrations](#rolling-back-migrations)
- [Resetting The Database](#resetting-the-database)
- [Refreshing The Database](#refreshing-the-database)
- [Custom Commands](#custom-commands)
- [Generating Console Directories And Files](#generating-console-directories-and-files)
- [Generating Custom Commands](#generating-custom-commands)
- [Writing Custom Commands](#writing-custom-commands)
- [Command Signature](#command-signature)
- [Defining Command Arguments](#defining-command-arguments)
- [Defining Command Options](#defining-command-options)
- [Accessing Command Arguments And Options](#accessing-command-arguments-and-options)
- [Command Output](#command-output)
- [Using Custom Commands](#using-custom-commands)
- [Calling Yarak In Code](#calling-yarak-in-code)
- [Developing](#developing)
- [Credits and Contributing](#credits-and-contributing)

## Release Notes
##### Moving from 1.1.* to 1.2.*
The core command wrapper has been extracted to a separate package
([zachleigh/artisanize](https://github.com/zachleigh/artisanize)). Where possible,
Yarak classes have been maintained for the time being in order to minimize update
issues. However, some interface type declarations may need to be updated after
isntalling the new version.

## Install
### Requirements
This package assumes you have the following:
- Phalcon >= 3.0
- PHP >= 5.6.5

### Install via composer
```
composer require zachleigh/yarak
```
### Register the service
```php
use Yarak\Kernel;

$di->setShared('yarak',function () {
return new Kernel();
});
```
Yarak requires the following config values in this structure:
```php
'database' => [
'adapter' => '',
'host' => '',
'username' => '',
'password' => '',
'dbname' => '',
'charset' => '',
],
'application' => [
'appDir' => APP_PATH.'/',
'commandsDir' => APP_PATH.'/console/commands',
'consoleDir' => APP_PATH.'/console/',
'databaseDir' => APP_PATH.'/database/',
'migrationsDir' => APP_PATH.'/database/migrations/',
'modelsDir' => APP_PATH.'/models/',
],
'namespaces' => [
'root' => '',
],
```
Yarak uses your application's config so if your config is already structured this way, simply add the necessary values. If your config strategy differs from this, you have several options. First, you can create a specific Yarak config key and set all values there:
```php
'yarak' => [
'database' => [
'adapter' => '',
'host' => '',
'username' => '',
'password' => '',
'dbname' => '',
'charset' => '',
],
'application' => [
'appDir' => APP_PATH.'/',
'commandsDir' => APP_PATH.'/console/commands',
'consoleDir' => APP_PATH.'/console/',
'databaseDir' => APP_PATH.'/database/',
'migrationsDir' => APP_PATH.'/database/migrations/',
'modelsDir' => APP_PATH.'/models/',
],
'namespaces' => [
'root' => '',
],
]
```
Then, when registering the service pass the config path:
```php
$di->setShared('yarak',function () {
return new Kernel('yarak');
});
```
If the config path is multiple levels deep, use dot notation:
```php
'services' => [
'yarak' => [
'database' => [
'adapter' => '',
'host' => '',
'username' => '',
'password' => '',
'dbname' => '',
'charset' => '',
],
'application' => [
'appDir' => APP_PATH.'/',
'commandsDir' => APP_PATH.'/console/commands',
'consoleDir' => APP_PATH.'/console/',
'databaseDir' => APP_PATH.'/database/',
'migrationsDir' => APP_PATH.'/database/migrations/',
'modelsDir' => APP_PATH.'/models/',
],
'namespaces' => [
'root' => '',
],
]
]
```
```php
$di->setShared('yarak',function () {
return new Kernel('services.yarak');
});
```
If you wish to add config values when registering Yarak, pass them as an array and Yarak will merge them into your existing config:
```php
$di->setShared('yarak',function () {
return new Kernel([
'namespaces' => [
'root' => '',
],
]);
});
```
Lastly, you can pass all config values when registering the service. Pass 'false' as the second parameter to the Kernel constructor to turn off config merging.
```php
$di->setShared('yarak',function () {
return new Kernel([
'database' => [
'adapter' => '',
'host' => '',
'username' => '',
'password' => '',
'dbname' => '',
'charset' => '',
],
'application' => [
'appDir' => APP_PATH.'/',
'commandsDir' => APP_PATH.'/console/commands',
'consoleDir' => APP_PATH.'/console/',
'databaseDir' => APP_PATH.'/database/',
'migrationsDir' => APP_PATH.'/database/migrations/',
'modelsDir' => APP_PATH.'/models/',
],
'namespaces' => [
'root' => '',
],
], false);
});
```

### Create a yarak file
In the project root, create a file called `yarak`. This file needs to do the following:
- Autoload all project files and vendor directory files
- Load the project services
- Resolve the Yarak kernel from the service container and call the `handle` method on it

Example:
```php
#!/usr/bin/env php
getYarak();

$kernel->handle();
```
The above example is included in the project at yarak/src/yarak_example. Copy it into your project with the following command, done from the project root:
```
cp vendor/zachleigh/yarak/src/yarak_example yarak
```

Once the yarak file exists, make it executable:
```
chomd +x yarak
```
### Add the database directory to the composer autoloader
Because migrations do not follow psr-4 naming conventions, load them with a classmap.
```
"autoload": {
"classmap": [
"relative/path/to/database/directory"
]
}
```
You may have to dump the composer autoload cache for the change to take affect.
```
composer dumpautoload
```

Test to make sure that it is working in the console:
```
php yarak
```

[Top](#contents)

## Database
Yarak gives users several helpful database functionalities that make development easier.
- [Generating Database Directories And Files](#generating-database-directories-and-files)
- [Model Factories](#model-factories)
- [Defining Factories](#defining-factories)
- [Using The Factory Helper](#using-the-factory-helper)
- [Making Multiple Model Instances](#making-multiple-model-instances)
- [Overriding The Default Attributes](#overriding-the-default-attributes)
- [Using Named Factories](#using-named-factories)
- [Model Relationships](#model-relationships)
- [Database Seeding](#database-seeding)
- [Creating Database Seeders](#creating-database-seeders)
- [Writing Database Seeders](#writing-database-seeders)
- [Using Database Seeders](#using-database-seeders)

### Generating Database Directories And Files
All database and migration functionalites require a standardized file hierarchy. To generate this hirearchy, use the `db:generate` command:
```
php yarak db:generate
```
This will create a database directory at the path set in the Yarak config. The database directory will contain migration, seeder, and factory directories and some file stubs to help you get started.

### Model Factories
Model factories provide a simple way to create testing data using the [Faker library](https://github.com/fzaninotto/Faker).

#### Defining Factories
Model factories are located in the `/database/factories` directory. This directory and a stub factory file can be created using the `php yarak db:generate` command.

To define a factory, use the `define` method on a variable called `$factory`. The `define` method has the following method signature:
```php
public function define($class, callable $attributes, $name = 'default')
```
The first argument is the full name/namespace of the class. The second argument is a callback that returns an array. This array must contain the data necessary to create the model. The third optional argument is a name for the factory. Setting the name allows you to define multiple factories for a single model.

To create a simple user model factory:
```php
use App\Models\Users;

$factory->define(Users::class, function (Faker\Generator $faker) {
return [
'username' => $faker->userName,
'email' => $faker->unique()->safeEmail,
'password' => 'password',
];
});
```

To create a named user model factory:
```php
use App\Models\Users;

$factory->define(Users::class, function (Faker\Generator $faker) {
return [
'username' => 'myUsername',
'email' => 'myEmail',
'password' => 'myPassword',
];
}, 'myUser');
```

The ModelFactory class responsible for creating model instances extends Phalcon\Mvc\User\Component and has access to the DI and any services registered. To access the ModelFactory class, use the `$factory` variable in the `$attributes` closure.
```php
use App\Models\Users;

$factory->define(Users::class, function (Faker\Generator $faker) use ($factory) {
return [
'username' => $faker->userName,
'email' => $faker->unique()->safeEmail,
'password' => $factory->security->hash('password'),
];
});
```

#### Using The Factory Helper
Yarak comes with a global `factory` helper function to make creating model instances simple. The factory function returns an instance of ModelFactoryBuilder which can be used to either make or create models. Calling `make` on the returned class simply makes the model class, but does not persist the data in the database. Calling `create` creates the class and persists it in the database.

Make a user model isntance, but don't persist it:
```php
use App\Models\Users;

$user = factory(Users::class)->make();
```

Create a user model and persist it:
```php
use App\Models\Users;

$user = factory(Users::class)->create();
```

#### Making Multiple Model Instances
If you require multiple instances of the model class, pass an integer as the second argument to `factory`:
```php
use App\Models\Users;

// Make three users
$users = factory(Users::class, 3)->make();

// Create three users
$users = factory(Users::class, 3)->create();
```
When more than one model is made, an array of models is returned.

#### Overriding The Default Attributes
To override the default attributes set in the factory definition, pass an array of overrides to `make` or `create`:
```php
use App\Models\Users;

// Make a user with username 'bobsmith' and email '[email protected]'
$user = factory(Users::class)->make([
'username' => 'bobsmith',
'email' => '[email protected]'
]);

// Create a user with username 'bobsmith' and email '[email protected]'
$user = factory(Users::class)->create([
'username' => 'bobsmith',
'email' => '[email protected]'
]);
```

#### Using Named Factories
To use a name factory, pass the name as the second argument to the `factory` function:
```php
use App\Models\Users;

// Make a user using the factory named 'myUser'
factory(Users::class, 'myUser')->make()

// Create a user using the factory named 'myUser'
factory(Users::class, 'myUser')->create()
```

To make multiple instances of a named factory, pass the desired number of instances as the third argument:
```php
use App\Models\Users;

// Make three users using the factory named 'myUser'
$users = factory(Users::class, 'myUser', 3)->make();

// Create three users using the factory named 'myUser'
$users = factory(Users::class, 'myUser', 3)->creates();
```

#### Model Relationships
When making model instances that require model relationships to also be built, you have a couple options.

First, you can manually create related models. In this example, we have Posts and Users which have a one-to-many relationship: a post can only belong to one user but a user can have many posts. The posts table contains a `users_id` column that references the `id` column on the users table. Posts table migration:
```php
$connection->createTable(
'posts',
null,
[
'columns' => [
new Column('id', [
'type' => Column::TYPE_INTEGER,
'size' => 10,
'unsigned' => true,
'notNull' => true,
'autoIncrement' => true,
]),
new Column('title', [
'type' => Column::TYPE_VARCHAR,
'size' => 200,
'notNull' => true,
]),
new Column('body', [
'type' => Column::TYPE_TEXT,
'notNull' => true,
]),
new Column('users_id', [
'type' => Column::TYPE_INTEGER,
'size' => 10,
'unsigned' => true,
'notNull' => true,
]),
new Column('created_at', [
'type' => Column::TYPE_TIMESTAMP,
'notNull' => true,
'default' => 'CURRENT_TIMESTAMP',
]),
],
'indexes' => [
new Index('PRIMARY', ['id'], 'PRIMARY')
],
'references' => [
new Reference(
'user_idfk',
[
'referencedTable' => 'users',
'columns' => ['users_id'],
'referencedColumns' => ['id'],
]
),
],
]
);
```
First, we need to create factories for both users and posts:
```php
use App\Models\Posts;
use App\Models\Users;

$factory->define(Users::class, function (Faker\Generator $faker) use ($factory) {
return [
'username' => $faker->userName,
'email' => $faker->unique()->safeEmail,
'password' => $factory->security->hash('password'),
];
});

$factory->define(Posts::class, function (Faker\Generator $faker) {
return [
'title' => $faker->unique()->sentence(4, true),
'body' => $faker->paragraph(4, true),
];
});
```

To create three users with one post each, we could simply loop over newly created users and create a post for each, sending the user id as an attribute override:
```php
use App\Models\Posts;
use App\Models\Users;

$users = factory(Users::class, 3)->create();

foreach ($users as $user) {
factory(Posts::class)->create([
'users_id' => $user->id
]);
}
```
For multiple posts, simply pass the desired number as the second variable to the factory helper:
```php
use App\Models\Posts;
use App\Models\Users;

$users = factory(Users::class, 3)->create();

foreach ($users as $user) {
factory(Posts::class, 3)->create([
'users_id' => $user->id
]);
}
```

Another way to create relationships is by using a closure returning a relationship in a factory definition:
```php
use App\Models\Posts;
use App\Models\Users;

$factory->define(Users::class, function (Faker\Generator $faker) use ($factory) {
return [
'username' => $faker->userName,
'email' => $faker->unique()->safeEmail,
'password' => $factory->security->hash('password'),
];
});

$factory->define(Posts::class, function (Faker\Generator $faker) {
return [
'title' => $faker->unique()->sentence(4, true),
'body' => $faker->paragraph(4, true),
'users_id' => function () {
return factory(Users::class)->create()->id;
}
];
}, 'withUser');
```
Here we are using a factory within the factory to create a new user for each new post created. We are also naming the factory 'withUser' for convenience. To create 20 posts made by 20 users, we can simply do this:
```php
use App\Models\Posts;

factory(Posts::class, 'withUser', 20)->create();
```

### Database Seeding
Database seeding gives you the ability to fill your database with testing data in a matter of seconds.

#### Creating Database Seeders
To create an empty database seeder file, use the `make:seeder` command:
```
php yarak make:seeder SeederName
```
This will generate an empty seeder file in /database/seeds. It is recommended to create separate seeder files for individual database tables.

#### Writing Database Seeders
All database seeders must have a `run` method where the database seeding logic is defined. In the run method, do whatever is necessary to fill the database table. Using [model factories](#model-factories) makes this process simple to acheive. An example seeder for a users tables might look like this:
```php
use App\Models\Users;
use Yarak\DB\Seeders\Seeder;

class UsersTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(Users::class, 5)->create();
}
}
```
Running this seeder will create five users in the database.

The parent Seeder class has a `call` method that will call the `run` method on other seeder files. This allows you to create several seeder files and then make a master DatabaseSeeder that will fill the entire database. We already have a UsersTableSeeder above, so let's now make a PostsTableSeeder:
```php
use App\Models\Posts;
use App\Models\Users;
use Yarak\DB\Seeders\Seeder;

class PostsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$allUsers = Users::find();

foreach ($allUsers as $user) {
factory(Posts::class, 5)->create(['users_id' => $user->getId()]);
}
}
}
```
This will create 5 posts for each of our users. We can then combine our two seeder files in a master DatabaseSeeder file:
```php
use Yarak\DB\Seeders\Seeder;

class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(UsersTableSeeder::class);
$this->call(PostsTableSeeder::class);
}
}
```
This will run each seeder file in the order they are listed. First, we will create five users with the UsersTableSeeder, then for each of those users, we will create five posts with the PostsTableSeeder.

#### Using Database Seeders
To run database seeder files, use the `db:seed` command:
```
php yarak db:seed SeederName
```
The default seeder name is 'DatabaseSeeder'.

You may also use the `--seed` flag with the `migrate:refresh` command:
```
php yarak migrate:refresh --seed --class=SeederName
```
:exclamation:**Refreshing the database will remove all data from your database.** This command will drop all tables, run all the migrations again, then fill the database using the given seeder class name. The default value for the seeder name is 'DatabaseSeeder'.

[Top](#contents)

## Migrations
Yarak migrations provide a simple, clean way to manage your database.
- [Generating Migrations](#generating-migrations)
- [Writing Migrations](#writing-migrations)
- [Creating Tables](#creating-tables)
- [Updating Tables](#updating-tables)
- [The Down Method](#the-down-method)
- [Running Migrations](#running-migrations)
- [Rolling Back Migrations](#rolling-back-migrations)
- [Resetting The Database](#resetting-the-database)
- [Refreshing The Database](#refreshing-the-database)

### Generating Migrations
All migrations are stored in databaseDir/migrations. The databaseDir path may be set when [registering the Yarak service](#register-the-service).

To generate migrations, use the `make:migration` command:
```
php yarak make:migration migration_name --create=table_name
```
The migration name must be snake_case and will be used to create the migration file name and class name. For example:
```
php yarak make:migration create_users_table
```
Using the name `create_users_table` will generate a migration class called `CreateUsersTable`. Migration file names are generated using a timestamp and the given name. In this example, the generated file name might look something like this: 2017_03_04_055719_create_users_table.php.

If you are creating a new table, using the `--create` flag plus the name of the database table will create a migration file with some additional boiler plate to save a little time.
```
php yarak make:migration create_users_table --create=users
```

### Writing Migrations
Yarak uses Phalcon's [Database Abstraction Layer](https://docs.phalconphp.com/en/3.0.0/reference/db.html) to interact with the database. This guide will only cover the most common operations. For more detailed information about what is possible, please see the [API Documentation](https://docs.phalconphp.com/en/3.0.1/api/Phalcon_Db_Adapter.html). Because the official Phalcon migrations also use the database abstraction layer, the [Phalcon migration documentation](https://docs.phalconphp.com/en/3.0.1/reference/migrations.html#migration-class-anatomy) may also be useful.

#### Creating Tables
To create a table, use the `$connection` variable's `createTable` method.
```php
public createTable (mixed $tableName, mixed $schemaName, array $definition)
```

To create a simple users table, your `up` method might look something like this:
```php
use Phalcon\Db\Index;
use Phalcon\Db\Column;

//

public function up(Pdo $connection)
{
$connection->createTable(
'users',
null,
[
'columns' => [
new Column('id', [
'type' => Column::TYPE_INTEGER,
'size' => 10,
'unsigned' => true,
'notNull' => true,
'autoIncrement' => true
]),
new Column('username', [
'type' => Column::TYPE_VARCHAR,
'size' => 32,
'notNull' => true
]),
new Column('password', [
'type' => Column::TYPE_CHAR,
'size' => 40,
'notNull' => true
]),
new Column('email', [
'type' => Column::TYPE_VARCHAR,
'size' => 20,
'notNull' => true
]),
new Column('created_at', [
'type' => Column::TYPE_TIMESTAMP,
'notNull' => true,
'default' => 'CURRENT_TIMESTAMP'
])
],
'indexes' => [
new Index('PRIMARY', ['id'], 'PRIMARY'),
new Index('users_username_unique', ['username'], 'UNIQUE'),
new Index('users_email_unique', ['email'], 'UNIQUE')
]
]
);
}
```

The definition array must contain a `columns` array, and can also include `indexes`, `references`, and `options` arrays. To define columns use Phalcon's [DB Column class](https://docs.phalconphp.com/en/3.0.1/api/Phalcon_Db_Column.html) class, for indexes use the [DB Index class](https://docs.phalconphp.com/en/3.0.1/api/Phalcon_Db_Index.html), and for foreign keys use the [DB Reference class](https://docs.phalconphp.com/en/3.0.1/api/Phalcon_Db_Reference.html).

For more information, see the [official documentation](https://docs.phalconphp.com/en/3.0.0/reference/db.html#creating-tables).

#### Updating Tables
To modify a column, use the `$connection` variable's `modifyColumn` method:
```php
public modifyColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column, [Phalcon\Db\ColumnInterface $currentColumn])
```
Continuing the example above, our email column size is currently set to 20 which is clearly not big enough. To modify this, we can create a new migration:
```
php yarak make:migration increase_user_email_column_size
```
In the created migration's up method, we can write the following:
```php
public function up(Pdo $connection)
{
$connection->modifyColumn(
'users',
null,
new Column(
'email',
[
'type' => Column::TYPE_VARCHAR,
'size' => 70,
]
)
);
}
```
Keep in mind that when using the Column class, `type` is required.

To add additional columns to a table, use the `addColumn` method:
```php
public addColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column)
```
So if we want to add an `active` column to our users table, we create a new migration:
```
php yarak make:migration add_active_column_to_users_table
```
And our migration up method could look like this:
```php
public function up(Pdo $connection)
{
$connection->addColumn(
'users',
null,
new Column(
'active',
[
'type' => Column::TYPE_CHAR,
'size' => 1,
'notNull' => true,
]
)
);
}
```
The [official documentation](https://docs.phalconphp.com/en/3.0.0/reference/db.html#altering-tables) contains some additional examples and information which may be helpful.

#### The Down Method
In order for migraion rollbacks to work, migrations must contain a `down` method where the process described in the `up` method is reversed. To continue our above example, when creating the users table, our down method would use the `dropTable` method:
```php
public function down(Pdo $connection)
{
$connection->dropTable('users');
}
```

When modifying the email column, we could simply modify the column so that it returns to it's previous state:
```php
public function down(Pdo $connection)
{
$connection->modifyColumn(
'users',
null,
new Column(
'email',
[
'type' => Column::TYPE_VARCHAR,
'size' => 20,
]
)
);
}
```

When adding the `active` column, use the `dropColumn` method:
```php
public function down(Pdo $connection)
{
$connection->dropColumn('users', null, 'active');
}
```

### Running Migrations
To run all pending migrations, simply use the Yarak `migrate` command:
```
php yarak migrate
```

This will run all migrations that have not yet been run. Migrations that are run at the same time will be in the same 'batch' and will be rolled back together.

### Rolling Back Migrations
:exclamation:**Before rolling back, be aware that all data in the tables you rollback will be lost.**

To rollback the last batch of migrations, call `migrate:rollback`:
```
php yarak migrate:rollback
```

Use `migrate:rollback` with the optional `--steps` flag to rollback more than one batch.
```
php yarak migrate:rollback --steps=2

// with shortcut
php yarak migrate:rollback -s=2
```
This will rollback the last two batches of migrations.

### Resetting The Database
Using the `migrate:reset` command will rollback all migrations.

:exclamation:**Resetting the database will remove all data from your database.** Be sure any data you wish to keep is backed up before proceeding.
```
php yarak migrate:reset
```

### Refreshing The Database
Refreshing the database will rollback all migrations and then re-run them all in a single batch.

:exclamation:**Refreshing the database will remove all data from your database.** Be sure any data you wish to keep is backed up before proceeding.
```
php yarak migrate:refresh
```

When using the `migrate:refresh` command, you may also use the `--seed` flag to run all your [database seeders](#database-seeding) after the database has been refreshed. See [Using Database Seeders](#using-database-seeders) for more information.

[Top](#contents)

## Custom Commands
Yarak can also be extended and used as a general command line task runner.
- [Generating Console Directories And Files](#generating-console-directories-and-files)
- [Generating Custom Commands](#generating-custom-commands)
- [Writing Custom Commands](#writing-custom-commands)
- [Command Signature](#command-signature)
- [Defining Command Arguments](#defining-command-arguments)
- [Defining Command Options](#defining-command-options)
- [Accessing Command Arguments And Options](#accessing-command-arguments-and-options)
- [Command Output](#command-output)
- [Using Custom Commands](#using-custom-commands)

### Generating Console Directories And Files
To generate all the directories and files necessary for the console component to work, use the `console:generate` command:
```
php yarak console:generate
```
This will create a console directory, a commands directory, an example command, and a Kernel.php file where you can register your custom commands. If the config value `namespaces => root` is set, Yarak will use file path information and the set root namespace to automatically generate namespaces. If you use a non-standard namespace, set `namespaces => console` as shown below.

### Generating Custom Commands
Before generating a custom command, be sure to include `consoleDir` in your config. You may also register a console namespace if the automatically generated namespaces are incorrect. By default, custom commands with be in the defined console directory in a folder called `commands`. You can override this by registering a `commandsDir`.
```php
'application' => [
//
'consoleDir' => APP_PATH.'/console/'
],
'namespaces' => [
//
'console' => 'App\Console'
],
});
```
Do not forget to register your console namespaces with the Phalcon loader.

Once `consoleDir` is registered, use the `make:command` command to generate a custom command stub.
```
php yarak make:command CommandName
```

### Writing Custom Commands
A command class has three components: a signature, a description, and a handle method.
```php
namespace App\Console\Commands;

use Yarak\Console\Command;

class ExampleCommand extends Command
{
/**
* The command signature.
*
* @var string
*/
protected $signature = 'namespace:name {argument} {--o|option=default}';

/**
* The command description.
*
* @var string
*/
protected $description = 'Command decription.';

/**
* Handle the command.
*/
protected function handle()
{
// handle the command
}
}
```
`signature` is where you define your command's name, arguments, and options. This is discussed in detail below. `description` is where you can set a description message for your command to be displayed when using the console. The `handle` method will be called when the command is fired and is where you should write the logic for your command. It may be useful to extract the bulk of your logic to a separate service class.

#### Command Signature
The command signature is written in the same way that the command will be used in the console and consists of three parts: the command name, arguments, and options. The command name must come first in the signature and can be namespaced by prefixing the command name with a namespace followed by a colon (':'):
```php
protected $signature = 'namespace:name';
```
Arguments and options are enclosed in curly braces and follow the command name. Options are prefixed by two dashes ('--').

##### Defining Command Arguments
A standard argument consists of the argument name wrapped in curly braces:
```php
protected $signature = 'namespace:name {arg} {--option}'
```
The argument name, `arg` in the example above, is used to access the argument value via the [`argument` method](#accessing-command-arguments-and-options).

To make an argument optional, append a question mark ('?') to the argument name:
```php
protected $signature = 'namespace:name {arg?} {--option}'
```

To give the argument a default value, separate the argument name and the default value with an equals sign ('='):
```php
protected $signature = 'namespace:name {arg=default} {--option}'
```
If no value is provided for the argument, the default value will be used.

If the argument is in array form, append an asterisk ('*') to the argument name:
```php
protected $signature = 'namespace:name {arg*} {--option}'
```
Arguments can then be passed to the command by space separating them:
```
php yarak namespace:name one two three
```
This will set the value of `arg` to `['one', 'two', 'three']`.

Argument arrays can also be set as optional:
```php
protected $signature = 'namespace:name {arg?*} {--option}'
```
When accessing optional argument arrays, arguments that have not been passed equal an empty array.

It is often helpful to provide a description with an argument. To do this, add a colon (':') after the argument definition and append the description:
```php
protected $signature = 'namespace:name {arg=default : Argument description} {--option}'
```

##### Defining Command Options
A standard option consists of the option, prefixed by two dashes ('--'), wrapped in curly braces:
```php
protected $signature = 'namespace:name {argument} {--opt}'
```
The option name, `opt`, is used to access the argument value via the [`option` method](#accessing-command-arguments-and-options). Standard options do not take values and act as true/false flags: the presence of the option when the command is called sets its value to true and if it is not present, the value is false.

To define an option with a required value, append an equals sign ('=') to the option name:
```php
protected $signature = 'namespace:name {argument} {--opt=}'
```

To set a default value, place it after the equals sign:
```php
protected $signature = 'namespace:name {argument} {--opt=default}'
```

Options may also have shortcuts to make them easier to remember and use. To set a shortcut, prepend it to the command name and separate the two with a pipe ('|'):
```php
protected $signature = 'namespace:name {argument} {--o|opt}'
```
Now, the option may be called inthe standard way:
```
php yarak namespace:name argument --opt
```
Or by using the shortcut:
```
php yarak namespace:name argument -o
```

Options may also be passed as arrays:
```php
protected $signature = 'namespace:name {argument} {--opt=*}'
```
When passing options arrays, each value must be prefixed by the option name:
```
php yarak namespace:name argument --opt=one --opt=two --opt=three
```
The value of `opt` will be set to `['one', 'two', 'three']`.

Just like with arguments, the option description can best by appending a colon (':') and the description to the option name definiton:
```php
protected $signature = 'namespace:name {argument} {--o|opt : option description.}'
```

#### Accessing Command Arguments And Options
To access arguments in the handle method, use the `argument` method:. If an argument name is given, it will return the value of the argument and if nothing is passed, it will return an array of all arguments:
```php
protected function handle()
{
$arg = $this->argument('arg'); // passed value of arg

$allArguments = $this->argument(); // array of all arguments
}
```

The `option` method works in the exact same way:
```php
protected function handle()
{
$opt = $this->option('opt'); // passed value of opt

$allOptions = $this->option(); // array of all options
}
```
There are also `hasArgument` and `hasOption` methods on the command object:
```php
protected function handle()
{
$argExists = $this->hasArgument('exists'); // true

$optExists = $this->hasOption('doesntExist'); // false
}
```

#### Asking for confirmation
The `confirm` method can be used to ask the user for a simple confirmation
```php
if ($this->confirm('Do you wish to continue? ')) {
//
}
```

#### Ask a question
In case an open question needs to be prompted the user, the `ask` method can be used.
The second argument provides a default fallback
```php
$name = $this->ask('What is your name?', 'Nobody');
```

#### Ask for a password
The user answer can be hidden by using the `askPassword` method
```php
$password = $this->askPassword('Please type the password');
```

#### Choosing from a list
The `choose` method only allows an answer from a predefined list of choices
```php
$car = $this->choose('What is your favourite car?', ['Ferrari', 'Lamborghini', 'Maserati'], 1);
```

#### Auto-completion
The `anticipate` method can provide the user some auto-completion help when starting to write.
The user can still choose any answer, regardless of the auto-completion hints
```php
$food = $this->anticipate('What is your favourite food?', ['Pizza', 'Pasta', 'Lasagna'], 'Mozzarella');
```

#### Multi choice
When the user should be allowed to choose more than a single answer, the `choice` method allows to select them from a list
```php
$colors = $this->choice('What are your favourite colors (defaults to blue and red)?', ['Blue', 'Red', 'Green'], '0,1');
```

#### Command Output
Every command has an `output` variable stored on the object that has several methods to help write output to the console.

The `write` method outputs plain unformatted text, `writeInfo` outputs green text, `writeError` outputs red text, and `writeComment` outputs yellow text:
```php
protected function handle()
{
$this->output->write('Message'); // plain text

$this->output->writeInfo('Message'); // green text

$this->output->writeError('Message'); // red text

$this->output->writeComment('Message'); // yellow text
}
```

The output variable is a simple wrapper around Symfony's output class. To access this class, use the `getOutputInterface` method:
```php
protected function handle()
{
$output = $this->getOutputInterface(); // $output is instance of Symfony\Component\Console\Output\OutputInterface
}
```

Keep in mind that the Yarak command class simply wraps up the Symfony console component. All Symfony command features are available on your custom command object. See the [Symfony console component documentation](http://symfony.com/doc/current/components/console.html) for more details.

### Using Custom Commands
Before using your custom command, you must register it in the command Kernel `$commands` array:
```php
use Yarak\Console\ConsoleKernel;
use App\Console\Commands\ExampleCommand;
use App\Comsone\Commands\YourCustomCommand;

class Kernel extends ConsoleKernel
{
/**
* Your custom Yarak commands.
*
* @var array
*/
protected $commands = [
ExampleCommand::class,
YourCustomCommand::class
];
}

```
Onces registered, the commands may be used like any other Yarak command:
```
php yarak namespace:name arg --opt
```

[Top](#contents)

## Calling Yarak In Code
To call a Yarak command from your codebase, use the Yarak::call static method.
```php
public static function call($command, array $arguments = [], \Phalcon\DiInterface $di = null)
```
For example, to call `migrate:rollback --steps=2`:
```php
use Yarak\Yarak;

Yarak::call('migrate:rollback', [
'--steps' => 2,
]);
```

Yarak will use the default DI to get its settings. If the resolved default DI is not working, pass an instance of Phalcon\Di as the third argument to the call method:
```php
use Yarak\Yarak;

Yarak::call('migrate:rollback', [
'--steps' => 2,
], $di);
```

If you are running PHP 5.6 or lower, using the static call method may result in the following error message:
```
Cannot bind an instance to a static closure
```
To avoid this error, pass the $di as the third variable to Yarak::call as shown above.

[Top](#contents)

## Developing
To set up the project locally for development, clone the repo and run `composer install` from the project root directory. Create the necessary database and enter your database configuration details in both `codeception.yml` and `app/config/config.php`. Run the full test suite with `php vendor/codeception/codeception/codecept run` or use the following composer scripts:
- `composer test`: run the full test suite
- `composer testf`: run only the functional tests
- `composer testu`: run only the unit tests

[Top](#contents)

## Credits and Contributing
This project is largely inspired by the [Laravel project](https://github.com/laravel). Some portions of code in Yarak were taken directly from the Laravel project. Many thanks to @taylorotwell and the rest of the Laravel contributors.

Contributions are more than welcome. Fork, improve and make a pull request. For bugs, ideas for improvement or other, please create an [issue](https://github.com/zachleigh/yarak/issues).