Tag: php
Grav: PHP flat-file CMS with built-in package management and Markdown support
Dropplets: Minimalist Markdown-based blogging platform written in PHP that requires no database
Polr: Open source PHP URL Shortener
Composer: Dependency Manager for PHP
GRPC: Open Source RPC framework built on HTTP/2 with libraries in 10 languages
- GRPC has libraries in C, C++, Java, Go, Node.js, Python, Ruby, Objective-C, PHP and C#.
- Define services using Protocol Buffers.
Laravel Envoy: SSH-based automation tool inspired by Python Fabric
https://github.com/laravel/envoy ᔥ
Composer has really changed the game for the PHP project ecosystem in my opinion. It makes installing and using a tool like Envoy much more attractive to me.
Pagekit: Beautiful PHP CMS with Markdown support and built-in marketplace
Pimple: PHP Dependency Injection Container
Guzzle: PHP HTTP client and framework for building RESTful web service clients
http://docs.guzzlephp.org/en/latest/ ᔥ
Github page here: https://github.com/guzzle/guzzle
$client = new GuzzleHttp\Client();
$response = $client->get('http://guzzlephp.org');
$res = $client->get('https://api.github.com/user', ['auth' => ['user', 'pass']]);
echo $res->getStatusCode();
// "200"
echo $res->getHeader('content-type');
// 'application/json; charset=utf8'
echo $res->getBody();
// {"type":"User"...'
var_export($res->json());
// Outputs the JSON decoded data
// Send an asynchronous request.
$req = $client->createRequest('GET', 'http://httpbin.org', ['future' => true]);
$client->send($req)->then(function ($response) {
echo 'I completed! ' . $response;
});