-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from silinternational/develop
Release 4.1.0
- Loading branch information
Showing
9 changed files
with
240 additions
and
74 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"installed": [ | ||
{ | ||
"name": "forevermatt/calc-api-sig", | ||
"version": "0.1.1", | ||
"description": null | ||
}, | ||
{ | ||
"name": "guzzlehttp/guzzle", | ||
"version": "5.3.4", | ||
"description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients" | ||
}, | ||
{ | ||
"name": "guzzlehttp/guzzle-services", | ||
"version": "0.6.0", | ||
"description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures." | ||
}, | ||
{ | ||
"name": "hybridauth/hybridauth", | ||
"version": "3.7.1", | ||
"description": "PHP Social Authentication Library" | ||
}, | ||
{ | ||
"name": "phake/phake", | ||
"version": "v3.1.9", | ||
"description": "The Phake mock testing library" | ||
}, | ||
{ | ||
"name": "phpunit/phpunit", | ||
"version": "8.5.15", | ||
"description": "The PHP Unit Testing framework." | ||
}, | ||
{ | ||
"name": "roave/security-advisories", | ||
"version": "dev-master 5ffdb87", | ||
"description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it" | ||
}, | ||
{ | ||
"name": "silinternational/apiaxle-sdk-php", | ||
"version": "1.0.3", | ||
"description": "PHP client for ApiAxle APIs" | ||
}, | ||
{ | ||
"name": "silinternational/php-env", | ||
"version": "0.2.0", | ||
"description": null | ||
}, | ||
{ | ||
"name": "simplesamlphp/simplesamlphp", | ||
"version": "v1.18.8", | ||
"description": "A PHP implementation of a SAML 2.0 service provider and identity provider, also compatible with Shibboleth 1.3 and 2.0." | ||
}, | ||
{ | ||
"name": "symfony/string", | ||
"version": "v5.2.8", | ||
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way" | ||
}, | ||
{ | ||
"name": "symfony/translation-contracts", | ||
"version": "v2.4.0", | ||
"description": "Generic abstractions related to translation" | ||
}, | ||
{ | ||
"name": "yiisoft/yii", | ||
"version": "1.1.23", | ||
"description": "Yii Web Programming Framework" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/* @var $this \Sil\DevPortal\controllers\ApiController */ | ||
/* @var $api \Sil\DevPortal\models\Api */ | ||
/* @var $usageStats UsageStats */ | ||
|
||
// Set up the breadcrumbs. | ||
$this->breadcrumbs += array( | ||
'APIs' => array('/api/'), | ||
$api->display_name => array('/api/details/', 'code' => $api->code), | ||
'API Usage By Key', | ||
); | ||
|
||
$this->pageTitle = 'API Usage By Key'; | ||
|
||
?> | ||
<dl class="dl-horizontal"> | ||
<dt><?php echo CHtml::encode($api->code); ?></dt> | ||
<dd><?php echo CHtml::encode($api->display_name); ?></dd> | ||
</dl> | ||
<div class="row"> | ||
<div class="span12"> | ||
<?= $usageStats->generateChartHtml(); ?> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters