===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-httpful-0.3.2/README.md-156-
php-httpful-0.3.2/README.md:157: - FEATURE [I #77](https://github.com/nategood/httpful/issues/77) Convenience method for setting a timeout (seconds) `$req->timeoutIn(10);`
php-httpful-0.3.2/README.md-158- - FIX [I #75](https://github.com/nategood/httpful/issues/75) [I #78](https://github.com/nategood/httpful/issues/78) Bug with checking if digest auth is being used.
##############################################
php-httpful-0.3.2/build-47-//$return_code = 0;
php-httpful-0.3.2/build:48://passthru("git add $phar_path", $return_code);
php-httpful-0.3.2/build-49-//exit_unless($return_code === 0, "Unable to add download files to git.");
##############################################
php-httpful-0.3.2/src/Httpful/Bootstrap.php-66-        if (file_exists($path)) {
php-httpful-0.3.2/src/Httpful/Bootstrap.php:67:            require_once($path);
php-httpful-0.3.2/src/Httpful/Bootstrap.php-68-        }
##############################################
php-httpful-0.3.2/src/Httpful/Handlers/README.md-2-
php-httpful-0.3.2/src/Httpful/Handlers/README.md:3:Handlers are simple classes that are used to parse response bodies and serialize request payloads.  All Handlers must extend the `MimeHandlerAdapter` class and implement two methods: `serialize($payload)` and `parse($response)`.  Let's build a very basic Handler to register for the `text/csv` mime type.
php-httpful-0.3.2/src/Httpful/Handlers/README.md-4-
##############################################
php-httpful-0.3.2/src/Httpful/Request.php-226-
php-httpful-0.3.2/src/Httpful/Request.php:227:        $result = curl_exec($this->_ch);
php-httpful-0.3.2/src/Httpful/Request.php-228-
##############################################
php-httpful-0.3.2/tests/bootstrap-server.php-18-    $output = array();
php-httpful-0.3.2/tests/bootstrap-server.php:19:    exec($command, $output, $exit_code);
php-httpful-0.3.2/tests/bootstrap-server.php-20-