This file contains 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
por-kellyj-m:mouf-play kellyj$ composer install -vvv | |
Reading ./composer.json | |
Loading config file /Users/kellyj/.composer/config.json | |
Loading config file /Users/kellyj/.composer/auth.json | |
Loading config file ./composer.json | |
Executing command (CWD): git describe --exact-match --tags | |
Executing command (CWD): git branch --no-color --no-abbrev -v | |
Executing command (CWD): hg branch | |
Executing command (CWD): svn info --xml | |
Reading /Users/kellyj/.composer/composer.json |
This file contains 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 | |
$sharedDir = '/var/www/adp_shared'; | |
$loader = require __DIR__ . '/../../vendor/autoload.php'; | |
$loader->add('AdpTest', $sharedDir . '/src', true); | |
$loader->add('Adp', $sharedDir . '/src', true); | |
require_once $sharedDir . '/loader/ADPSharedClassLoader.class.php'; | |
require_once $sharedDir . '/xml_support/XmlSupport.class.php'; |
This file contains 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 | |
/** | |
* Zend Framework (http://framework.zend.com/) | |
* | |
* @link http://github.com/zendframework/zf2 for the canonical source repository | |
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | |
* @license http://framework.zend.com/license/new-bsd New BSD License | |
* @package Zend_Config | |
*/ |
This file contains 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
Index: library/Zend/Db/TableGateway/AbstractTableGateway.php | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP | |
<+><?php\n/**\n * Zend Framework (http://framework.zend.com/)\n *\n * @link http://github.com/zendframework/zf2 for the canonical source repository\n * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)\n * @license http://framework.zend.com/license/new-bsd New BSD License\n * @package Zend_Db\n */\n\nnamespace Zend\\Db\\TableGateway;\n\nuse Zend\\Db\\Adapter\\Adapter;\nuse Zend\\Db\\ResultSet\\ResultSet;\nuse Zend\\Db\\ResultSet\\ResultSetInterface;\nuse Zend\\Db\\Sql\\Delete;\nuse Zend\\Db\\Sql\\Insert;\nuse Zend\\Db\\Sql\\Select;\nuse Zend\\Db\\Sql\\Sql;\nuse Zend\\Db\\Sql\\TableIdentifier;\nuse Zend\\Db\\Sql\\Update;\n\n/**\n * @category Zend\n * @package Zend_Db\n * @subpackage TableGateway\n *\n * @property Adapter $adapter\n * @property |