Skip to content

Commit

Permalink
Bumping release v2.1.0, closes #2, closes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Mar 7, 2017
1 parent 6b24663 commit b97cd49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com).

## [2.1.0] - YYYY-MM-DD
## [2.1.0] - 2017-03-07

### Changed

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use hollodotme\FastCGI\Client;
use hollodotme\FastCGI\SocketConnections\UnixDomainSocket;

$connection = new UnixDomainSocket(
'unix:///var/run/php/php7.0-fpm.sock', # Socket path to php-fpm
'unix:///var/run/php/php7.1-fpm.sock', # Socket path to php-fpm
5000, # Connect timeout in milliseconds (default: 5000)
5000, # Read/write timeout in milliseconds (default: 5000)
false, # Make socket connection persistent (default: false)
Expand Down Expand Up @@ -96,7 +96,7 @@ use hollodotme\FastCGI\Client;
use hollodotme\FastCGI\Requests\PostRequest;
use hollodotme\FastCGI\SocketConnections\UnixDomainSocket;

$client = new Client( new UnixDomainSocket( 'unix:///var/run/php/php7.0-fpm.sock' ) );
$client = new Client( new UnixDomainSocket( 'unix:///var/run/php/php1.0-fpm.sock' ) );
$content = http_build_query( ['key' => 'value'] );

$request = new PostRequest('/path/to/target/script.php', $content);
Expand Down

0 comments on commit b97cd49

Please sign in to comment.