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

Commit b6f3565

Browse files
author
Brian Retterer
committed
Merge branch 'release/1.18.0'
2 parents 21f718c + ce39c04 commit b6f3565

File tree

209 files changed

+1262
-612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+1262
-612
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ stormpath-sdk-php Changelog
22
===========================
33

44

5+
Version 1.18.0
6+
--------------
7+
8+
Released on January 3, 2017
9+
10+
- Happy New Year!
11+
- Added OrgNameKey to Password Grant Type (Resolves #61)
12+
- Update all copyright dates to 2017
13+
514
Version 1.17.2
615
--------------
716

CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Contributing
22

3-
You can make your own contributions by forking the dev branch, making your changes, and issuing pull-requests on the dev branch.
3+
Contributions, bug reports and issues are very welcome. Stormpath regularly maintains this repository, and are quick to review pull requests and accept changes!
4+
5+
You can make your own contributions by forking the `dev` branch of this repository, making your changes, and issuing pull request on the `dev` branch.
6+
7+
Any Pull request made directly to `master` or other branches will be closed.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2016 Stormpath, Inc.
1+
Copyright 2017 Stormpath, Inc.
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ If you feel the contributions require document changes as well, or the contribut
6969

7070
## Copyright
7171

72-
Copyright © 2013-2016 Stormpath, Inc. and contributors.
72+
Copyright © 2013-2017 Stormpath, Inc. and contributors.
7373

7474
This project is open-source via the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0).

src/ApiKey.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?php
2-
3-
namespace Stormpath;
4-
5-
/*
6-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
74
*
85
* Licensed under the Apache License, Version 2.0 (the "License");
96
* you may not use this file except in compliance with the License.
@@ -16,7 +13,10 @@
1613
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1714
* See the License for the specific language governing permissions and
1815
* limitations under the License.
16+
*
1917
*/
18+
19+
namespace Stormpath;
2020
class ApiKey
2121
{
2222

src/Authc/Api/ApiAuthenticationResult.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
/*
3-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -13,6 +13,7 @@
1313
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
16+
*
1617
*/
1718

1819
namespace Stormpath\Authc\Api;

src/Authc/Api/ApiKeyEncryptionOptions.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?php
2-
3-
namespace Stormpath\Authc\Api;
4-
5-
/*
6-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
74
*
85
* Licensed under the Apache License, Version 2.0 (the "License");
96
* you may not use this file except in compliance with the License.
@@ -16,8 +13,11 @@
1613
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1714
* See the License for the specific language governing permissions and
1815
* limitations under the License.
16+
*
1917
*/
2018

19+
namespace Stormpath\Authc\Api;
20+
2121
class ApiKeyEncryptionOptions
2222
{
2323
const ENCRYPT_SECRET = 'encryptSecret';

src/Authc/Api/ApiKeyEncryptionUtils.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?php
2-
3-
namespace Stormpath\Authc\Api;
4-
5-
use phpseclib\Crypt\AES as ModernAES;
6-
use Crypt_AES as OldAES;
7-
8-
/*
9-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
104
*
115
* Licensed under the Apache License, Version 2.0 (the "License");
126
* you may not use this file except in compliance with the License.
@@ -19,8 +13,14 @@
1913
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2014
* See the License for the specific language governing permissions and
2115
* limitations under the License.
16+
*
2217
*/
2318

19+
namespace Stormpath\Authc\Api;
20+
21+
use phpseclib\Crypt\AES as ModernAES;
22+
use Crypt_AES as OldAES;
23+
2424
class ApiKeyEncryptionUtils
2525
{
2626
public static function decrypt($secret, $password, ApiKeyEncryptionOptions $options)

src/Authc/Api/ApiRequestAuthenticator.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
/*
3-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -13,6 +13,7 @@
1313
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
16+
*
1617
*/
1718

1819
namespace Stormpath\Authc\Api;

src/Authc/Api/AuthenticatorResult.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
/*
3-
* Copyright 2016 Stormpath, Inc.
2+
/**
3+
* Copyright 2017 Stormpath, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -13,6 +13,7 @@
1313
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
16+
*
1617
*/
1718

1819
namespace Stormpath\Authc\Api;

0 commit comments

Comments
 (0)