xFrame

A lightweight annotation based MVC framework


Project maintained by doncem Hosted on GitHub Pages — Theme by mattgraham

Note: Doctrine2 must be installed.

Application Access

The Doctrine2 Entity Manager is provided through the dependency injection container:

/**
 * @Request index
 */
public function run()
{
    $query = $this->dic->em->createQuery('SELECT * FROM Xframe\Demo\Model\User');
}

It is not loaded until first use and it uses the database settings in the configuration file.

CLI Access

If you cd to the root directory of your project the doctrine cli program will detect the cli-config.php bootstrap and use the xFrame Entity Manager instance.

$ cd /var/www/example.org
$ doctrine orm:schema-tool:create

More on Doctrine2

Doctrine2 Documentation

Migration

Since version 1.2.0, Doctrine migrations are available to use in project. In case you are using custom namespace prefix, you probably will need to override the cli script. This is also available for you:

In project root you should also have migration configuration file migrations.yml:

name: xFrame Doctrine Migrations
migrations_namespace: Migration
table_name: doctrine_migration_version
migrations_directory: doctrine-migration

More help: just run ./vendor/bin/migration