Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix shebang output and get ready for 0.4.2 #18

Merged
merged 3 commits into from
Oct 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"