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 | |
// Set flag that this is a parent file. | |
// We are a valid Joomla entry point. | |
define('_JEXEC', 1); | |
// Setup the base path related constants. | |
define('JPATH_BASE', dirname(dirname(dirname(dirname(dirname(__FILE__)))))); | |
define('JPATH_COMPONENT_ADMINISTRATOR', dirname(dirname(__FILE__))); | |
define('JPATH_PLATFORM', JPATH_BASE . '/libraries'); |
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
?> | |
<pre><?php | |
echo __FILE__ . '::' . __LINE__ . ':: '; | |
echo ': '; | |
echo '<div style="font-size: 1.5em;">'; | |
print_r($); | |
echo '</div>'; | |
?></pre><?php |
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
#!/bin/bash | |
# Creator: Phil Cook | |
# Email: [email protected] | |
# Twitter: @p_cook | |
brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') | |
brew_array=("5.6","7.1","7.2","7.3") | |
php_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") | |
valet_support_php_version_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") | |
php_installed_array=() |