Skip to content

Commit

Permalink
Updated license to BSD 3-Clause.
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Gaspar <brunofgaspar1@gmail.com>
  • Loading branch information
brunogaspar committed Jun 23, 2015
1 parent 99acf6a commit 5ff0238
Show file tree
Hide file tree
Showing 103 changed files with 448 additions and 554 deletions.
57 changes: 7 additions & 50 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"codeigniter",
"fuelphp"
],
"license": "proprietary",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cartalyst LLC",
Expand Down
107 changes: 0 additions & 107 deletions readme.md

This file was deleted.

8 changes: 4 additions & 4 deletions src/Activations/ActivationRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Activations/EloquentActivation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Activations/IlluminateActivationRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Checkpoints/ActivationCheckpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Checkpoints/AuthenticatedCheckpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Checkpoints/CheckpointInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Checkpoints/NotActivatedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Checkpoints/ThrottleCheckpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Loading

0 comments on commit 5ff0238

Please sign in to comment.