Skip to content

Commit

Permalink
Merge pull request #18 from dshafik/fix-shebang-output
Browse files Browse the repository at this point in the history
Fix shebang output and get ready for 0.4.2
  • Loading branch information
dshafik committed Oct 30, 2015
2 parents 86de3e4 + c469d30 commit 8bee730
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 16 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,6 @@ $ ./vendor/bin/http --help
php akamai-open-edgegrid-client.phar --help
```

We recommend that you either use the composer installed binary, or that you make the phar file executable:

```sh
chmod u+x akamai-open-edgegrid-client.phar
```

### Arguments

Arguments are similar to `httpie`:
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/Akamai_Open_EdgeGrid_Client.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2 id="synopsis">Synopsis</h2>
extends Client
implements
LoggerAwareInterface
{<br/><ul class="none"><li>// constants</li><li>const VERSION = "0.4.1";</li><li>const DEFAULT_REQUEST_TIMEOUT = 10;</li></ul><ul class="none"><li>// members</li><li>protected static <span title="Akamai\Open\EdgeGrid\bool|array|resource">bool|array|resource</span> <a href="#members">$staticVerbose</a> =
{<br/><ul class="none"><li>// constants</li><li>const VERSION = "0.4.2";</li><li>const DEFAULT_REQUEST_TIMEOUT = 10;</li></ul><ul class="none"><li>// members</li><li>protected static <span title="Akamai\Open\EdgeGrid\bool|array|resource">bool|array|resource</span> <a href="#members">$staticVerbose</a> =
false;
</li><li>protected static <span title="Akamai\Open\EdgeGrid\bool|resource">bool|resource</span> <a href="#members">$staticDebug</a> =
false;
Expand Down Expand Up @@ -159,7 +159,7 @@ <h2 id="constants">Constants</h2>
<tbody>
<tr>
<td id="VERSION">VERSION</td>
<td>"0.4.1"</td>
<td>"0.4.2"</td>
</tr>
<tr>
<td id="DEFAULT_REQUEST_TIMEOUT">DEFAULT_REQUEST_TIMEOUT</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2>Software Documentation</h2>
</div>
<div id="buildinfo">
<h3>Build</h3>
<p>Fri, 30 Oct 2015 00:38:57 -0400</p>
<p>Fri, 30 Oct 2015 01:51:05 -0400</p>
<h3>VCS Info</h3>
<p>
tag: <br/>
Expand Down
4 changes: 2 additions & 2 deletions docs/source/Client.php.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h1>Source of Akamai {OPEN} Auth for PHP</h1>
</td>
<td>17.7 KB
</td>
<td>2015-10-29T23:46:38-04:00</td>
<td>2015-10-30T01:50:28-04:00</td>
</tr>
<tr>
<td>
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
class Client extends \GuzzleHttp\Client implements \Psr\Log\LoggerAwareInterface
{
const VERSION = "0.4.1";
const VERSION = "0.4.2";

/**
* @const int Default Timeout in seconds
Expand Down
4 changes: 1 addition & 3 deletions tools/build-phar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ if (!file_exists(__DIR__ . '/../build/phar')) {
}
\$stub = <<<EOF
#!/usr/bin/env php
<?php
if (class_exists('Phar')) {
Phar::mapPhar('akamai-open-edgegrid-client.phar');
Expand All @@ -41,5 +40,4 @@ file_put_contents('build/phar/stub.php', \$stub);" > build/phar/bootstrap.php

php -dphar.readonly=0 ./vendor/bin/box build

mv akamai-open-edgegrid-client.phar "akamai-open-edgegrid-client${VERSION}.phar"
chmod +x "akamai-open-edgegrid-client${VERSION}.phar"
mv akamai-open-edgegrid-client.phar "akamai-open-edgegrid-client${VERSION}.phar"

0 comments on commit 8bee730

Please sign in to comment.