diff --git a/LICENSE b/LICENSE index f1c5d3b3..d8e5c953 100644 --- a/LICENSE +++ b/LICENSE @@ -1,56 +1,13 @@ -Cartalyst PSL -Copyright (c) 2011-2015, Cartalyst LLC, +The BSD 3-Clause License +Copyright (c) 2011-2015, Cartalyst LLC All rights reserved. -This license is a legal agreement between you and Cartalyst LLC for the use of -any package (all versions) Software (the "Software"). By downloading any version -of the Software you agree to be bound by the terms and conditions of this -license. Cartalyst LLC reserves the right to alter this agreement at any time, -for any reason, without notice. +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -The Cartalyst PSL License allows the holder’s products to be sold or distributed -to end users only, and not to developers or vendors who intend to use the -Software for actual development. In the case a License holder sells or otherwise -distributes the Software to developers and not to end users, the License Holder -must advise the developers that they must purchase their own license in order to -use the Software. +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Holders of the Cartalyst PSL License may: +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. -1. You may Use the Software personally or allow use of the Software to their -clients and users on unlimited websites engaging in commercial, for-profit or -non-for-profit activities. +Neither the name of Cartalyst LLC and its libraries nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -2. You may alter, modify, or extend the Software for your own use or for use in -an integral part of your product or service. - -Unless you have been granted prior, written consent from Cartalyst LLC, -you may not: - -1. You may not reproduce, distribute, sub license, share, lease or transfer the -Software as a sole product, or portions thereof, to any third party. - -2. You may not use the software in violation of any United States or -international laws or regulations. - -3. You may not grant rights to any other person. - -4. You may not allow integration of the Software with open source products with -exception to add-ons, extensions and plugins sold separately from the open -source software. - -You agree to indemnify and hold harmless Cartalyst LLC for any third-party -claims, actions or suits, as well as any related expenses, liabilities, damages, -settlements or fees arising from your use or misuse of the Software, or -violation of any terms of this license. - -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. +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 new file mode 100644 index 00000000..0cbea575 --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +# Sentinel + +[![Build Status](http://ci.cartalyst.com/build-status/svg/6)](http://ci.cartalyst.com/build-status/view/6) + +Sentinel is a PHP 5.4+ fully-featured authentication & authorization system. It also provides additional features such as user roles and additional security features. + +Sentinel is a framework agnostic set of interfaces with default implementations, though you can substitute any implementations you see fit. + +An open source package by [Cartalyst](https://cartalyst.com), code well, rock on! + +## Documentation + +Reader-friendly Documentation can be found here. [Sentinel Manual](https://cartalyst.com/manual/sentinel). + +Raw files can be found via this projects docs/version branch. + +- [1.0](https://github.com/cartalyst/sentinel/tree/docs/1.0) + +## Changelog + +Important versions listed below. Refer to the [Changelog](CHANGELOG.md) for a full history of the project. + +- [1.0](CHANGELOG.md) - 2014-08-05 + +## Support + +The following support channels can be used for contact. + +- [Twitter](https://twitter.com/cartalyst) +- [Email](mailto:help@cartalyst.com) + +Bug reports, feature requests, and pull requests can be submitted by following our [Contribution Guide](CONTRIBUTING.md). + +## Contributing & Protocols + +- [Versioning](CONTRIBUTING.md#versioning) +- [Coding Standards](CONTRIBUTING.md#coding-standards) +- [Pull Requests](CONTRIBUTING.md#pull-requests) + +## License + +This software is released under the [BSD 3-Clause](LICENSE) License. + +© 2011-2015 Cartalyst LLC, All rights reserved. diff --git a/composer.json b/composer.json index 019dfba4..4a3c17c0 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "codeigniter", "fuelphp" ], - "license": "proprietary", + "license": "BSD-3-Clause", "authors": [ { "name": "Cartalyst LLC", diff --git a/readme.md b/readme.md deleted file mode 100644 index 24698723..00000000 --- a/readme.md +++ /dev/null @@ -1,107 +0,0 @@ -# Sentinel - -[![Build Status](http://ci.cartalyst.com/build-status/svg/6)](http://ci.cartalyst.com/build-status/view/6) - -Sentinel is a PHP 5.4+ fully-featured authentication & authorization system. It also provides additional features such as user roles and additional security features. - -Sentinel is a framework agnostic set of interfaces with default implementations, though you can substitute any implementations you see fit. - -## Package Story - -Package history and capabilities. - -#### 13-Mar-15 - v1.0.9 - -- Set the user object on the `Sentinel` class to null after logout. -- Detect client ip using symfony's `Request` class on the native bootstrapper. - -#### 23-Jan-15 - v1.0.8 - -- Fixed a bug on the `findByCredentials` method that caused the first user to be returned when an empty array is passed. -- Added mysql database schema. - -#### 21-Oct-14 - v1.0.7 - -- Added the `$hidden` property to the user model with the password field being hidden by default. - -#### 24-Sep-14 - v1.0.6 - -- Wrap garbageCollect into a try catch block to prevent an exception from being thrown if the database is not setup. - -#### 16-Sep-14 - v1.0.5 - -- Fixed a minor issue when deleting a user, the method wasn't returning the expected boolean only null. - -#### 15-Sep-14 - v1.0.4 - -- Improved the requirements to allow the installation on Laravel 5.0. - -#### 13-Sep-14 - v1.0.3 - -- Updated the updatePermission method signature on the PermissibleInterface due to a PHP bug on older versions. - -#### 10-Sep-14 - v1.0.2 - -- Fixed some doc blocks typos -- Loosened the requirements on the composer.json -- Added an IoC Container alias for the Sentinel class. - -#### 07-Aug-14 - v1.0.1 - -- Addresses a bug where user model overriding was ignored. - -#### 05-Aug-14 - v1.0.0 - -- Authentication. -- Authorization. -- Registration. -- Driver based permission system. -- Flexible activation scenarios. -- Reminders. (password reset) -- Inter-account throttling with DDoS protection. -- Roles and role permissions. -- Remember me. -- Interface driven. (your own implementations at will) - -## Requirements - -- PHP >=5.4 - -## Installation - -Sentinel is installable with Composer. Read further information on how to install. - -[Installation Guide](https://cartalyst.com/manual/sentinel#installation) - -## Documentation - -Refer to the following guide on how to use the Sentinel package. - -[Documentation](https://cartalyst.com/manual/sentinel) - -## Versioning - -We version under the [Semantic Versioning](http://semver.org/) guidelines as much as possible. - -Releases will be numbered with the following format: - -`..` - -And constructed with the following guidelines: - -* Breaking backward compatibility bumps the major (and resets the minor and patch) -* New additions without breaking backward compatibility bumps the minor (and resets the patch) -* Bug fixes and misc changes bumps the patch - -## Support - -Have a bug? Please create an issue here on GitHub that conforms with [necolas's guidelines](https://github.com/necolas/issue-guidelines). - -https://github.com/cartalyst/sentinel/issues - -Follow us on Twitter, [@cartalyst](http://twitter.com/cartalyst). - -Join us for a chat on IRC. - -Server: irc.freenode.net -Channel: #cartalyst diff --git a/src/Activations/ActivationRepositoryInterface.php b/src/Activations/ActivationRepositoryInterface.php index 94094494..5a90b181 100644 --- a/src/Activations/ActivationRepositoryInterface.php +++ b/src/Activations/ActivationRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Activations/EloquentActivation.php b/src/Activations/EloquentActivation.php index 68b7f314..c90614b8 100644 --- a/src/Activations/EloquentActivation.php +++ b/src/Activations/EloquentActivation.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Activations/IlluminateActivationRepository.php b/src/Activations/IlluminateActivationRepository.php index 327034e3..581796ad 100644 --- a/src/Activations/IlluminateActivationRepository.php +++ b/src/Activations/IlluminateActivationRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/ActivationCheckpoint.php b/src/Checkpoints/ActivationCheckpoint.php index 122570c0..6b80fe36 100644 --- a/src/Checkpoints/ActivationCheckpoint.php +++ b/src/Checkpoints/ActivationCheckpoint.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/AuthenticatedCheckpoint.php b/src/Checkpoints/AuthenticatedCheckpoint.php index 9edd5179..4262814a 100644 --- a/src/Checkpoints/AuthenticatedCheckpoint.php +++ b/src/Checkpoints/AuthenticatedCheckpoint.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/CheckpointInterface.php b/src/Checkpoints/CheckpointInterface.php index c2b7fc74..10f8afe7 100644 --- a/src/Checkpoints/CheckpointInterface.php +++ b/src/Checkpoints/CheckpointInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/NotActivatedException.php b/src/Checkpoints/NotActivatedException.php index cc72a6c3..106cb13b 100644 --- a/src/Checkpoints/NotActivatedException.php +++ b/src/Checkpoints/NotActivatedException.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/ThrottleCheckpoint.php b/src/Checkpoints/ThrottleCheckpoint.php index 9caec465..7a448b63 100644 --- a/src/Checkpoints/ThrottleCheckpoint.php +++ b/src/Checkpoints/ThrottleCheckpoint.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Checkpoints/ThrottlingException.php b/src/Checkpoints/ThrottlingException.php index f1eb8252..f5fed35e 100644 --- a/src/Checkpoints/ThrottlingException.php +++ b/src/Checkpoints/ThrottlingException.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Cookies/CICookie.php b/src/Cookies/CICookie.php index 1114385f..17905069 100644 --- a/src/Cookies/CICookie.php +++ b/src/Cookies/CICookie.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Cookies/CookieInterface.php b/src/Cookies/CookieInterface.php index d0c8d78b..1a13b240 100644 --- a/src/Cookies/CookieInterface.php +++ b/src/Cookies/CookieInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Cookies/FuelPHPCookie.php b/src/Cookies/FuelPHPCookie.php index 95ff3318..0086faa9 100644 --- a/src/Cookies/FuelPHPCookie.php +++ b/src/Cookies/FuelPHPCookie.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Cookies/IlluminateCookie.php b/src/Cookies/IlluminateCookie.php index af283284..a0431928 100644 --- a/src/Cookies/IlluminateCookie.php +++ b/src/Cookies/IlluminateCookie.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Cookies/NativeCookie.php b/src/Cookies/NativeCookie.php index bb658b38..8ebdd31e 100644 --- a/src/Cookies/NativeCookie.php +++ b/src/Cookies/NativeCookie.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/BcryptHasher.php b/src/Hashing/BcryptHasher.php index 59a4a011..f0d5f1a9 100644 --- a/src/Hashing/BcryptHasher.php +++ b/src/Hashing/BcryptHasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/CallbackHasher.php b/src/Hashing/CallbackHasher.php index d4b7bd27..2f51c037 100644 --- a/src/Hashing/CallbackHasher.php +++ b/src/Hashing/CallbackHasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/Hasher.php b/src/Hashing/Hasher.php index 098dac7c..be8c02ff 100644 --- a/src/Hashing/Hasher.php +++ b/src/Hashing/Hasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/HasherInterface.php b/src/Hashing/HasherInterface.php index 181e2996..ee0aadf1 100644 --- a/src/Hashing/HasherInterface.php +++ b/src/Hashing/HasherInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/NativeHasher.php b/src/Hashing/NativeHasher.php index 0a2cf66a..5517d7e3 100644 --- a/src/Hashing/NativeHasher.php +++ b/src/Hashing/NativeHasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/Sha256Hasher.php b/src/Hashing/Sha256Hasher.php index b7893e94..6ae027b0 100644 --- a/src/Hashing/Sha256Hasher.php +++ b/src/Hashing/Sha256Hasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Hashing/WhirlpoolHasher.php b/src/Hashing/WhirlpoolHasher.php index a2fd1169..f198e3fe 100644 --- a/src/Hashing/WhirlpoolHasher.php +++ b/src/Hashing/WhirlpoolHasher.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/Facades/Activation.php b/src/Laravel/Facades/Activation.php index 9188a8c3..f87b2dd8 100644 --- a/src/Laravel/Facades/Activation.php +++ b/src/Laravel/Facades/Activation.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/Facades/Reminder.php b/src/Laravel/Facades/Reminder.php index 5d652f84..6b4c977a 100644 --- a/src/Laravel/Facades/Reminder.php +++ b/src/Laravel/Facades/Reminder.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/Facades/Sentinel.php b/src/Laravel/Facades/Sentinel.php index 157e7ce1..202805b4 100644 --- a/src/Laravel/Facades/Sentinel.php +++ b/src/Laravel/Facades/Sentinel.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/SentinelServiceProvider.php b/src/Laravel/SentinelServiceProvider.php index 0a269bb4..7336bef2 100644 --- a/src/Laravel/SentinelServiceProvider.php +++ b/src/Laravel/SentinelServiceProvider.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Native/ConfigRepository.php b/src/Native/ConfigRepository.php index 35e0317b..8f9c992b 100644 --- a/src/Native/ConfigRepository.php +++ b/src/Native/ConfigRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Native/Facades/Sentinel.php b/src/Native/Facades/Sentinel.php index f9b34dbf..5151ae39 100644 --- a/src/Native/Facades/Sentinel.php +++ b/src/Native/Facades/Sentinel.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Native/SentinelBootstrapper.php b/src/Native/SentinelBootstrapper.php index cef3dc79..7359743a 100644 --- a/src/Native/SentinelBootstrapper.php +++ b/src/Native/SentinelBootstrapper.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/PermissibleInterface.php b/src/Permissions/PermissibleInterface.php index a36ebaff..304be5f4 100644 --- a/src/Permissions/PermissibleInterface.php +++ b/src/Permissions/PermissibleInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/PermissibleTrait.php b/src/Permissions/PermissibleTrait.php index d68defac..0b1eed35 100644 --- a/src/Permissions/PermissibleTrait.php +++ b/src/Permissions/PermissibleTrait.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/PermissionsInterface.php b/src/Permissions/PermissionsInterface.php index 4c3d22e8..e59eb11b 100644 --- a/src/Permissions/PermissionsInterface.php +++ b/src/Permissions/PermissionsInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/PermissionsTrait.php b/src/Permissions/PermissionsTrait.php index 07e3c54e..0e233b41 100644 --- a/src/Permissions/PermissionsTrait.php +++ b/src/Permissions/PermissionsTrait.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/StandardPermissions.php b/src/Permissions/StandardPermissions.php index d8098fc1..c1851c24 100644 --- a/src/Permissions/StandardPermissions.php +++ b/src/Permissions/StandardPermissions.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Permissions/StrictPermissions.php b/src/Permissions/StrictPermissions.php index 31f2c2a5..50935428 100644 --- a/src/Permissions/StrictPermissions.php +++ b/src/Permissions/StrictPermissions.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Persistences/EloquentPersistence.php b/src/Persistences/EloquentPersistence.php index 3dca725f..2a8213c6 100644 --- a/src/Persistences/EloquentPersistence.php +++ b/src/Persistences/EloquentPersistence.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Persistences/IlluminatePersistenceRepository.php b/src/Persistences/IlluminatePersistenceRepository.php index 6d24fe92..3adb8c83 100644 --- a/src/Persistences/IlluminatePersistenceRepository.php +++ b/src/Persistences/IlluminatePersistenceRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Persistences/PersistableInterface.php b/src/Persistences/PersistableInterface.php index 2a0207cb..b64b91e8 100644 --- a/src/Persistences/PersistableInterface.php +++ b/src/Persistences/PersistableInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Persistences/PersistenceInterface.php b/src/Persistences/PersistenceInterface.php index df93d46a..ac7c87c8 100644 --- a/src/Persistences/PersistenceInterface.php +++ b/src/Persistences/PersistenceInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Persistences/PersistenceRepositoryInterface.php b/src/Persistences/PersistenceRepositoryInterface.php index 6843bf93..909ee090 100644 --- a/src/Persistences/PersistenceRepositoryInterface.php +++ b/src/Persistences/PersistenceRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Reminders/EloquentReminder.php b/src/Reminders/EloquentReminder.php index 956c721f..abc976dd 100644 --- a/src/Reminders/EloquentReminder.php +++ b/src/Reminders/EloquentReminder.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Reminders/IlluminateReminderRepository.php b/src/Reminders/IlluminateReminderRepository.php index 9e20903b..26893730 100644 --- a/src/Reminders/IlluminateReminderRepository.php +++ b/src/Reminders/IlluminateReminderRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Reminders/ReminderRepositoryInterface.php b/src/Reminders/ReminderRepositoryInterface.php index 61376ff2..c59b8b7f 100644 --- a/src/Reminders/ReminderRepositoryInterface.php +++ b/src/Reminders/ReminderRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Roles/EloquentRole.php b/src/Roles/EloquentRole.php index b7134a16..4874fba0 100644 --- a/src/Roles/EloquentRole.php +++ b/src/Roles/EloquentRole.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Roles/IlluminateRoleRepository.php b/src/Roles/IlluminateRoleRepository.php index 8d80cf1e..a92abf1e 100644 --- a/src/Roles/IlluminateRoleRepository.php +++ b/src/Roles/IlluminateRoleRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Roles/RoleInterface.php b/src/Roles/RoleInterface.php index e4c1f6b4..99c19281 100644 --- a/src/Roles/RoleInterface.php +++ b/src/Roles/RoleInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Roles/RoleRepositoryInterface.php b/src/Roles/RoleRepositoryInterface.php index ca8a6454..f4015dcf 100644 --- a/src/Roles/RoleRepositoryInterface.php +++ b/src/Roles/RoleRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Roles/RoleableInterface.php b/src/Roles/RoleableInterface.php index 18b36c4a..6bc12395 100644 --- a/src/Roles/RoleableInterface.php +++ b/src/Roles/RoleableInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sentinel.php b/src/Sentinel.php index e6b4efeb..22fa7b39 100644 --- a/src/Sentinel.php +++ b/src/Sentinel.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sessions/CISession.php b/src/Sessions/CISession.php index b9956d0a..a86a89dd 100644 --- a/src/Sessions/CISession.php +++ b/src/Sessions/CISession.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sessions/FuelPHPSession.php b/src/Sessions/FuelPHPSession.php index a01d750e..2136607f 100644 --- a/src/Sessions/FuelPHPSession.php +++ b/src/Sessions/FuelPHPSession.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sessions/IlluminateSession.php b/src/Sessions/IlluminateSession.php index 78282c8a..562b5f9a 100644 --- a/src/Sessions/IlluminateSession.php +++ b/src/Sessions/IlluminateSession.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sessions/NativeSession.php b/src/Sessions/NativeSession.php index 63ab2d00..88385b93 100644 --- a/src/Sessions/NativeSession.php +++ b/src/Sessions/NativeSession.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Sessions/SessionInterface.php b/src/Sessions/SessionInterface.php index 650ef7c3..5a4e10b6 100644 --- a/src/Sessions/SessionInterface.php +++ b/src/Sessions/SessionInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Throttling/EloquentThrottle.php b/src/Throttling/EloquentThrottle.php index dfe08bf1..ed0e2335 100644 --- a/src/Throttling/EloquentThrottle.php +++ b/src/Throttling/EloquentThrottle.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Throttling/IlluminateThrottleRepository.php b/src/Throttling/IlluminateThrottleRepository.php index c3c5e654..53f93a01 100644 --- a/src/Throttling/IlluminateThrottleRepository.php +++ b/src/Throttling/IlluminateThrottleRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Throttling/ThrottleRepositoryInterface.php b/src/Throttling/ThrottleRepositoryInterface.php index f6d1fc42..f9fbe094 100644 --- a/src/Throttling/ThrottleRepositoryInterface.php +++ b/src/Throttling/ThrottleRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Users/EloquentUser.php b/src/Users/EloquentUser.php index 71ce3d77..f7df0d25 100644 --- a/src/Users/EloquentUser.php +++ b/src/Users/EloquentUser.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Users/IlluminateUserRepository.php b/src/Users/IlluminateUserRepository.php index 2037ccc9..b182da24 100644 --- a/src/Users/IlluminateUserRepository.php +++ b/src/Users/IlluminateUserRepository.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Users/UserInterface.php b/src/Users/UserInterface.php index 17243bf0..9de6826d 100644 --- a/src/Users/UserInterface.php +++ b/src/Users/UserInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Users/UserRepositoryInterface.php b/src/Users/UserRepositoryInterface.php index 874152d6..34ef002d 100644 --- a/src/Users/UserRepositoryInterface.php +++ b/src/Users/UserRepositoryInterface.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/config/config.php b/src/config/config.php index bf45f564..682e5bcd 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php b/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php index 9124a60b..f45269de 100644 --- a/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php +++ b/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/ActivationCheckpointTest.php b/tests/ActivationCheckpointTest.php index c7f08367..68622335 100644 --- a/tests/ActivationCheckpointTest.php +++ b/tests/ActivationCheckpointTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/BcryptHasherTest.php b/tests/BcryptHasherTest.php index 4fb3820c..7496713a 100644 --- a/tests/BcryptHasherTest.php +++ b/tests/BcryptHasherTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/CICookieTest.php b/tests/CICookieTest.php index 1a22d85f..d6fc4f22 100644 --- a/tests/CICookieTest.php +++ b/tests/CICookieTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/CISessionTest.php b/tests/CISessionTest.php index a487c8f1..7a0ec731 100644 --- a/tests/CISessionTest.php +++ b/tests/CISessionTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/CallbackHasherTest.php b/tests/CallbackHasherTest.php index 0c94cd67..d2c518df 100644 --- a/tests/CallbackHasherTest.php +++ b/tests/CallbackHasherTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/CheckpointsTest.php b/tests/CheckpointsTest.php index c31a61dd..e546ddb1 100644 --- a/tests/CheckpointsTest.php +++ b/tests/CheckpointsTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/EloquentActivationTest.php b/tests/EloquentActivationTest.php index f822a3d3..46f9db49 100644 --- a/tests/EloquentActivationTest.php +++ b/tests/EloquentActivationTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/EloquentPersistenceTest.php b/tests/EloquentPersistenceTest.php index bcb5b1ef..35e5c575 100644 --- a/tests/EloquentPersistenceTest.php +++ b/tests/EloquentPersistenceTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/EloquentReminderTest.php b/tests/EloquentReminderTest.php index 1ee4ecd1..45bc366d 100644 --- a/tests/EloquentReminderTest.php +++ b/tests/EloquentReminderTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/EloquentRoleTest.php b/tests/EloquentRoleTest.php index 6918b97f..d8aa7768 100644 --- a/tests/EloquentRoleTest.php +++ b/tests/EloquentRoleTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/EloquentUserTest.php b/tests/EloquentUserTest.php index 4bc886ce..1289f3a7 100644 --- a/tests/EloquentUserTest.php +++ b/tests/EloquentUserTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/FuelPHPCookieTest.php b/tests/FuelPHPCookieTest.php index 447b8bba..79a9351f 100644 --- a/tests/FuelPHPCookieTest.php +++ b/tests/FuelPHPCookieTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/FuelPHPSessionTest.php b/tests/FuelPHPSessionTest.php index e2e802b5..8c351c1e 100644 --- a/tests/FuelPHPSessionTest.php +++ b/tests/FuelPHPSessionTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateActivationRepositoryTest.php b/tests/IlluminateActivationRepositoryTest.php index 4f85cc49..5d308bb7 100644 --- a/tests/IlluminateActivationRepositoryTest.php +++ b/tests/IlluminateActivationRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateCookieTest.php b/tests/IlluminateCookieTest.php index b39a3060..936cd272 100644 --- a/tests/IlluminateCookieTest.php +++ b/tests/IlluminateCookieTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminatePersistenceRepositoryTest.php b/tests/IlluminatePersistenceRepositoryTest.php index 6bdeb855..df83e1f8 100644 --- a/tests/IlluminatePersistenceRepositoryTest.php +++ b/tests/IlluminatePersistenceRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateReminderRepositoryTest.php b/tests/IlluminateReminderRepositoryTest.php index c871ee49..de3d82a1 100644 --- a/tests/IlluminateReminderRepositoryTest.php +++ b/tests/IlluminateReminderRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateRoleRepositoryTest.php b/tests/IlluminateRoleRepositoryTest.php index 36e09c96..ccc52334 100644 --- a/tests/IlluminateRoleRepositoryTest.php +++ b/tests/IlluminateRoleRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateSessionTest.php b/tests/IlluminateSessionTest.php index e23fffb9..22c996d2 100644 --- a/tests/IlluminateSessionTest.php +++ b/tests/IlluminateSessionTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateThrottleRepositoryTest.php b/tests/IlluminateThrottleRepositoryTest.php index 92a996b5..d53ae5f0 100644 --- a/tests/IlluminateThrottleRepositoryTest.php +++ b/tests/IlluminateThrottleRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/IlluminateUserRepositoryTest.php b/tests/IlluminateUserRepositoryTest.php index 8ed74bcc..24bf0677 100644 --- a/tests/IlluminateUserRepositoryTest.php +++ b/tests/IlluminateUserRepositoryTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/NativeCookieTest.php b/tests/NativeCookieTest.php index 9b6b8ef3..7ed63f47 100644 --- a/tests/NativeCookieTest.php +++ b/tests/NativeCookieTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/NativeHasherTest.php b/tests/NativeHasherTest.php index 0c77d562..aba550a6 100644 --- a/tests/NativeHasherTest.php +++ b/tests/NativeHasherTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/NativeSessionTest.php b/tests/NativeSessionTest.php index edc5eea4..f89a41b0 100644 --- a/tests/NativeSessionTest.php +++ b/tests/NativeSessionTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/PermissibleTraitTest.php b/tests/PermissibleTraitTest.php index 004afc55..e7e4e399 100644 --- a/tests/PermissibleTraitTest.php +++ b/tests/PermissibleTraitTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/PermissionsTraitTest.php b/tests/PermissionsTraitTest.php index 814916e9..59900936 100644 --- a/tests/PermissionsTraitTest.php +++ b/tests/PermissionsTraitTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/SentinelBootstrapperTest.php b/tests/SentinelBootstrapperTest.php index b694a5ca..913863a2 100644 --- a/tests/SentinelBootstrapperTest.php +++ b/tests/SentinelBootstrapperTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/SentinelTest.php b/tests/SentinelTest.php index 1ad13e58..3eeba1f7 100644 --- a/tests/SentinelTest.php +++ b/tests/SentinelTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/Sha256HasherTest.php b/tests/Sha256HasherTest.php index 508fddfb..f389ff17 100644 --- a/tests/Sha256HasherTest.php +++ b/tests/Sha256HasherTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/StandardPermissionsTest.php b/tests/StandardPermissionsTest.php index 3be7f787..2b6ced1b 100644 --- a/tests/StandardPermissionsTest.php +++ b/tests/StandardPermissionsTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/StrictPermissionsTest.php b/tests/StrictPermissionsTest.php index 0965d156..155a8b92 100644 --- a/tests/StrictPermissionsTest.php +++ b/tests/StrictPermissionsTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/ThrottleCheckpointTest.php b/tests/ThrottleCheckpointTest.php index 5a8471d5..c1597e01 100644 --- a/tests/ThrottleCheckpointTest.php +++ b/tests/ThrottleCheckpointTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/WhirlpoolHasherTest.php b/tests/WhirlpoolHasherTest.php index c8267f95..dd6b9f30 100644 --- a/tests/WhirlpoolHasherTest.php +++ b/tests/WhirlpoolHasherTest.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/stubs/ci/CI_Input.php b/tests/stubs/ci/CI_Input.php index c2b893d1..12a65d0d 100644 --- a/tests/stubs/ci/CI_Input.php +++ b/tests/stubs/ci/CI_Input.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/stubs/ci/CI_Session.php b/tests/stubs/ci/CI_Session.php index dc4251d5..65fc8ef1 100644 --- a/tests/stubs/ci/CI_Session.php +++ b/tests/stubs/ci/CI_Session.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/stubs/fuelphp/Fuel/Core/Cookie.php b/tests/stubs/fuelphp/Fuel/Core/Cookie.php index 46e7cadc..13f97a1f 100644 --- a/tests/stubs/fuelphp/Fuel/Core/Cookie.php +++ b/tests/stubs/fuelphp/Fuel/Core/Cookie.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/stubs/fuelphp/Fuel/Core/Session_Driver.php b/tests/stubs/fuelphp/Fuel/Core/Session_Driver.php index b2232d77..571df6a0 100644 --- a/tests/stubs/fuelphp/Fuel/Core/Session_Driver.php +++ b/tests/stubs/fuelphp/Fuel/Core/Session_Driver.php @@ -4,15 +4,15 @@ * * NOTICE OF LICENSE * - * Licensed under the Cartalyst PSL License. + * Licensed under the 3-clause BSD License. * - * This source file is subject to the Cartalyst PSL License that is - * bundled with this package in the license.txt file. + * This source file is subject to the 3-clause BSD License that is + * bundled with this package in the LICENSE file. * * @package Sentinel * @version 1.0.10 * @author Cartalyst LLC - * @license Cartalyst PSL + * @license BSD License (3-clause) * @copyright (c) 2011-2015, Cartalyst LLC * @link http://cartalyst.com */