Most of this configuration are default settings for easy start to work. Is configured for productive environment, depends of your application you have to tweak your config files!
Any hints for improve the configs are welcome!
<?php | |
namespace Application\JsonRpc\V1\ZeroMq; | |
class Request extends \Processus\Abstracts\JsonRpc\AbstractJsonRpcRequest | |
{ | |
public function __construct() | |
{ | |
} |
;;;;;;;;;;;;;;;;;;;;; | |
; FPM Configuration ; | |
;;;;;;;;;;;;;;;;;;;;; | |
; All relative paths in this configuration file are relative to PHP's install | |
; prefix (/usr/local/Cellar/php53/5.3.17). This prefix can be dynamicaly changed by using the | |
; '-p' argument from the command line. | |
; Include one or more files. If glob(3) exists, it is used to include a bunch of | |
; files from a glob(3) pattern. This directive can be used everywhere in the |
;;;;;;;;;;;;;;;;;;;;; | |
; FPM Configuration ; | |
;;;;;;;;;;;;;;;;;;;;; | |
; All relative paths in this configuration file are relative to PHP's install | |
; prefix (/usr/local/Cellar/php53/5.3.17). This prefix can be dynamicaly changed by using the | |
; '-p' argument from the command line. | |
; Include one or more files. If glob(3) exists, it is used to include a bunch of | |
; files from a glob(3) pattern. This directive can be used everywhere in the |
# ---- crwd-tools ---- | |
LANG="en_US.UTF-8" | |
export LANG | |
LC_ALL="en_US.UTF-8" | |
export LC_ALL | |
LC_CTYPE="UTF-8" | |
export LC_CTYPE | |
PATH=$HOME/bin:/usr/local/bin:/usr/local/sbin:$PATH | |
export PATH |
Most of this configuration are default settings for easy start to work. Is configured for productive environment, depends of your application you have to tweak your config files!
Any hints for improve the configs are welcome!
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --prefix=/usr/local/Cellar/php53-zmq/1.0.3 | |
## --------- ## | |
## Platform. ## |
/bin/sh /Users/thelittlenerd87/www/php-ext-couchbase-source/libtool --mode=compile cc -I. -I/Users/thelittlenerd87/www/php-ext-couchbase-source -DPHP_ATOM_INC -I/Users/thelittlenerd87/www/php-ext-couchbase-source/include -I/Users/thelittlenerd87/www/php-ext-couchbase-source/main -I/Users/thelittlenerd87/www/php-ext-couchbase-source -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/local/include/ -DHAVE_CONFIG_H -g -O2 -c /Users/thelittlenerd87/www/php-ext-couchbase-source/couchbase.c -o couchbase.lo | |
mkdir .libs | |
cc -I. -I/Users/thelittlenerd87/www/php-ext-couchbase-source -DPHP_ATOM_INC -I/Users/thelittlenerd87/www/php-ext-couchbase-source/include -I/Users/thelittlenerd87/www/php-ext-couchbase-source/main -I/Users/thelittlenerd87/www/php-ext-couchbase-source -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib |
#!/bin/sh | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
echo "===========================================" | |
echo "Deploy started!" | |
echo "===========================================" | |
RSYNC="`which rsync`" | |
IGNORE_FILE="$DIR/rsyncignore" |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2299719/hack.sh | sh | |
# |
#!/bin/sh | |
if [ `which perl` = "/usr/bin/perl" ]; then | |
echo -n -e "\e[1;31mUSING SYSTEM PERL OK? [y/n]\e[m: " | |
read ANSWER | |
if [ "$ANSWER" != "y" ]; then | |
exit 255 | |
fi | |
PERL_CPANM_OPT="$PERL_CPANM_OPT --sudo" | |
fi |