This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<phpunit | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd" | |
backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="test/bootstrap.php" | |
cacheTokens="false" | |
colors="true" | |
convertErrorsToExceptions="true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- CakeSchema Export | |
-- Based on DoctrinExport (http://code.google.com/p/mysql-workbench-doctrine-plugin/) | |
-- | |
-- Testing | |
-- catalog= grtV.getGlobal("/wb/doc/physicalModels/0/catalog") | |
-- CakeSchema:writeToClipboard(catalog) | |
-- | |
-- standard module/plugin functions | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once "vendor/autoload.php"; | |
use Doctrine\ORM\Tools\Setup; | |
use Doctrine\ORM\EntityManager; | |
$paths = array("./src/","./metadata/"); | |
$isDevMode = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTBOX_IP="192.168.33.10" | |
VAGRANTBOX_HOSTNAME="you.hostname.com" | |
Vagrant.configure("2") do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, |