diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7ec08f1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,14 @@ +Original Copyright (c) 2015, Ivan Novakov +Portions Copyright (c) 2016, Brad Jones +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/README.md b/README.md index 4407176..8c7d1fa 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,7 @@ The library has been tested successfully with the following identity providers: ## Requirements -* Zend Framework >= 2.2.1 - -## Documentation - -* [API docs](http://debug.cz/apidoc/php-openid-connect-client/) +* Zend Framework >= 2.2.1 (resolved in composer.json) ## Installation @@ -229,8 +225,7 @@ OAuth2: ## License -- [BSD-3-Clause](http://debug.cz/license/bsd-3-clause) - +- BSD 3-Clause ## Author diff --git a/composer.json b/composer.json index 105617f..c8433bd 100644 --- a/composer.json +++ b/composer.json @@ -3,8 +3,8 @@ "description" : "OAuth2/OpenID Connect client library", "type": "library", "license": "BSD-3-Clause", - "homepage": "https://github.com/ivan-novakov/php-openid-connect-client", - + "homepage": "https://github.com/bradjonesllc/php-openid-connect-client", + "keywords": [ "oauth2", "openid connect", @@ -15,17 +15,14 @@ "zf2", "zend framework" ], - - "authors": [{ - "name": "Ivan Novakov", - "homepage": "http://novakov.cz/" - }], - - "repositories": [{ - "type": "composer", - "url": "https://packages.zendframework.com/" - }], - + + "authors": [ + { + "name": "Ivan Novakov", + "homepage": "http://novakov.cz/" + } + ], + "require" : { "php" : ">=5.3.3", "zendframework/zend-eventmanager" : ">=2.2.1", @@ -35,7 +32,7 @@ "zendframework/zend-session" : ">=2.2.1", "zendframework/zend-json" : ">=2.2.1" }, - + "require-dev": { "phpunit/phpunit": "~4.4" }, @@ -45,5 +42,4 @@ "InoOicClient\\" : "src/" } } - -} \ No newline at end of file +}