Hamilton Turner 23d7cbb0b7 HHVM typo %!s(int64=11) %!d(string=hai) anos
..
cakephp a6e74857ec Fix cakephp PATH handling %!s(int64=11) %!d(string=hai) anos
hhvm 23d7cbb0b7 HHVM typo %!s(int64=11) %!d(string=hai) anos
php 7d777ee841 Cleanup basic PHP %!s(int64=11) %!d(string=hai) anos
php-codeigniter b9f7248722 Cleanup codeigniter %!s(int64=11) %!d(string=hai) anos
php-fatfree 2d9b1b65d5 cleanup php-fatfree %!s(int64=11) %!d(string=hai) anos
php-fuel 1a55c3933b Cleanup php-fuel %!s(int64=11) %!d(string=hai) anos
php-kohana e279bc581f Cleanup php-kohana %!s(int64=11) %!d(string=hai) anos
php-laravel 9e89f4215e Cleanup php-laravel %!s(int64=11) %!d(string=hai) anos
php-lithium ef2fcd4449 Cleanup php-lithium %!s(int64=11) %!d(string=hai) anos
php-micromvc 1913b5079c Cleanup php-micromvc %!s(int64=11) %!d(string=hai) anos
php-phalcon 5740008f61 Cleanup php-phalcon %!s(int64=11) %!d(string=hai) anos
php-phalcon-micro 27358dbea7 Minor updates to reflect moving yaf and phalcon into php install %!s(int64=11) %!d(string=hai) anos
php-phpixie c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-pimf c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-senthot c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-silex c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-silex-orm c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-silica c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-slim c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-symfony2 c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-symfony2-stripped c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
php-yaf 27358dbea7 Minor updates to reflect moving yaf and phalcon into php install %!s(int64=11) %!d(string=hai) anos
php-yii2 7fde1aa370 Add __init__ files to a number of tests %!s(int64=11) %!d(string=hai) anos
php-zend-framework c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
phreeze c791a06013 name php properly %!s(int64=11) %!d(string=hai) anos
README.md c99eb898e7 Add basic read me to php %!s(int64=11) %!d(string=hai) anos

README.md

Tricks to writing PHP-based Frameworks

Many servers use the php, php-fpm, or other binaries. If your server launches with sudo (e.g. sudo php-fpm) then you should be aware that sudo resets the $PATH environment variable, and your specific binary may not be the one being used. The solution is to always use sudo <full-path-to-my-binary>. For example, cakephp's bash_profile.sh sets the variable $PHP_FPM to be the full path to the php-fpm binary that cakephp wants, and then uses sudo $PHP_FPM to ensure that the php-fpm binary used by sudo is the exact binary desired.