Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 9f9fb6d

Browse files
author
Brian Retterer
committed
Documentation fixes
1 parent 0567a4b commit 9f9fb6d

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

CHANGES.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
stormpath-sdk-php Changelog
22
===========================
33

4+
Version 1.12.2
5+
--------------
6+
7+
Released on December 16, 2015
8+
9+
- Fixed a bug where the accessToken and refreshTokens were not accessible from the Account
10+
- We now show the refresh token object from OauthGrantAuthenticatorResult for all requests if enabled
11+
- Removed logging from the phpunit tests. If code coverage is needed, you should now use the flag on phpunit
12+
- Update Readme Documentation to reference the fixes and phpunit changes
13+
- Removed branch alias from composer.json file
14+
415
Version 1.12.1
516
--------------
617

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
[![Codecov](https://img.shields.io/codecov/c/github/stormpath/stormpath-sdk-php.svg)](https://codecov.io/github/stormpath/stormpath-sdk-php)
33
[![Total Downloads](https://poser.pugx.org/stormpath/sdk/d/total.svg)](https://packagist.org/packages/stormpath/sdk)
44
[![Latest Stable Version](https://poser.pugx.org/stormpath/sdk/v/stable.svg)](https://packagist.org/packages/stormpath/sdk)
5-
[![Latest Unstable Version](https://poser.pugx.org/stormpath/sdk/v/unstable.svg)](https://packagist.org/packages/stormpath/sdk)
65
[![License](https://poser.pugx.org/stormpath/sdk/license.svg)](https://packagist.org/packages/stormpath/sdk)
76

87
# Stormpath PHP SDK
@@ -1942,8 +1941,11 @@ Alternatively, configure the api key id and secret and run the tests:
19421941
export STORMPATH_SDK_TEST_API_KEY_SECRET=API_KEY_SECRET_VALUE
19431942
vendor/bin/phpunit
19441943

1945-
After running the tests, find the code coverage information
1946-
in the following directory: <code>tests/code-coverage</code>
1944+
If you would like code coverage, please run the tests with the following:
1945+
1946+
vendor/bin/phpunit --coverage-html=./code-coverage
1947+
1948+
The code coverage will be placed in the root of the package in a folder named `code-coverage`. Once you have this folder, you can open it in your browser to view it.
19471949

19481950
## Contributing
19491951

composer.json

-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@
3535
"Stormpath\\Tests\\": "tests/"
3636
}
3737
},
38-
"extra": {
39-
"branch-alias": {
40-
"dev-master": "1.12-dev"
41-
}
42-
},
4338
"require": {
4439
"php": ">=5.4",
4540
"guzzle/guzzle": "3.9.*",

phpunit.xml.dist

-9
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@
99
</testsuite>
1010
</testsuites>
1111

12-
<logging>
13-
<log type="coverage-html" target="./code-coverage" charset="UTF-8" yui="true" lowUpperBound="50" highLowerBound="90"/>
14-
<log type="coverage-clover" target="./code-coverage/clover.xml"/>
15-
<log type="coverage-crap4j" target="./code-coverage/crap4j.xml"/>
16-
<log type="coverage-php" target="./code-coverage/coverage.php"/>
17-
<log type="coverage-text" target="./code-coverage/coverage.txt"/>
18-
<log type="junit" target="./code-coverage/junit.xml" logIncompleteSkipped="false"/>
19-
</logging>
20-
2112
<filter>
2213
<whitelist addUncoveredFilesFromWhitelist="true">
2314
<directory suffix=".php">./src</directory>

0 commit comments

Comments
 (0)