From e1071845db04f1e99437a0b6356c090e7fc39789 Mon Sep 17 00:00:00 2001 From: Hari K T Date: Tue, 21 Jul 2026 23:46:25 +0530 Subject: [PATCH] update licnese from BSD to MIT --- LICENSE | 36 ++++++++++++------------- composer.json | 2 +- src/Escaper.php | 2 +- src/Escaper/AbstractEscaper.php | 2 +- src/Escaper/AttrEscaper.php | 2 +- src/Escaper/CssEscaper.php | 2 +- src/Escaper/HtmlEscaper.php | 2 +- src/Escaper/JsEscaper.php | 2 +- src/EscaperFactory.php | 2 +- src/Exception.php | 2 +- src/Exception/EncodingNotSupported.php | 2 +- src/Exception/ExtensionNotInstalled.php | 2 +- src/Exception/HelperNotFound.php | 2 +- src/Exception/InvalidArgument.php | 2 +- src/Exception/InvalidUtf8.php | 2 +- src/Helper/AbstractElement.php | 2 +- src/Helper/AbstractHelper.php | 2 +- src/Helper/AbstractList.php | 2 +- src/Helper/AbstractSeries.php | 2 +- src/Helper/Anchor.php | 2 +- src/Helper/AnchorRaw.php | 2 +- src/Helper/Base.php | 2 +- src/Helper/Element.php | 2 +- src/Helper/ElementRaw.php | 2 +- src/Helper/Form.php | 2 +- src/Helper/Img.php | 2 +- src/Helper/Input.php | 2 +- src/Helper/Input/AbstractChecked.php | 2 +- src/Helper/Input/AbstractInput.php | 2 +- src/Helper/Input/Checkbox.php | 2 +- src/Helper/Input/Generic.php | 2 +- src/Helper/Input/Radio.php | 2 +- src/Helper/Input/Select.php | 2 +- src/Helper/Input/Textarea.php | 2 +- src/Helper/Label.php | 2 +- src/Helper/Links.php | 2 +- src/Helper/Metas.php | 2 +- src/Helper/Ol.php | 2 +- src/Helper/Scripts.php | 2 +- src/Helper/Structure.php | 2 +- src/Helper/StructureRaw.php | 2 +- src/Helper/Styles.php | 2 +- src/Helper/Tag.php | 2 +- src/Helper/Title.php | 2 +- src/Helper/Ul.php | 2 +- src/Helper/VoidTag.php | 2 +- src/HelperLocator.php | 2 +- src/HelperLocatorFactory.php | 2 +- 48 files changed, 64 insertions(+), 66 deletions(-) diff --git a/LICENSE b/LICENSE index eee5e93..02f116e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,23 +1,21 @@ -Copyright (c) 2011-2025, The Aura Project for PHP -All rights reserved. +The MIT License (MIT) -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Copyright (c) 2011-2026, Aura for PHP -- Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -- 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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/composer.json b/composer.json index ea2be19..fce5666 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "escaping" ], "homepage": "https://github.com/auraphp/Aura.Html", - "license": "BSD-2-Clause", + "license": "MIT", "authors": [ { "name": "Aura.Html Contributors", diff --git a/src/Escaper.php b/src/Escaper.php index 31c7ed1..1d23a01 100644 --- a/src/Escaper.php +++ b/src/Escaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html; diff --git a/src/Escaper/AbstractEscaper.php b/src/Escaper/AbstractEscaper.php index 4566cff..614a5d1 100644 --- a/src/Escaper/AbstractEscaper.php +++ b/src/Escaper/AbstractEscaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Escaper; diff --git a/src/Escaper/AttrEscaper.php b/src/Escaper/AttrEscaper.php index b4907ea..6940f5a 100644 --- a/src/Escaper/AttrEscaper.php +++ b/src/Escaper/AttrEscaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Escaper; diff --git a/src/Escaper/CssEscaper.php b/src/Escaper/CssEscaper.php index 6499268..062e276 100644 --- a/src/Escaper/CssEscaper.php +++ b/src/Escaper/CssEscaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Escaper; diff --git a/src/Escaper/HtmlEscaper.php b/src/Escaper/HtmlEscaper.php index 8a151c9..e74e63c 100644 --- a/src/Escaper/HtmlEscaper.php +++ b/src/Escaper/HtmlEscaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Escaper; diff --git a/src/Escaper/JsEscaper.php b/src/Escaper/JsEscaper.php index 5b82b64..42bd022 100644 --- a/src/Escaper/JsEscaper.php +++ b/src/Escaper/JsEscaper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Escaper; diff --git a/src/EscaperFactory.php b/src/EscaperFactory.php index fdad362..02b9f68 100644 --- a/src/EscaperFactory.php +++ b/src/EscaperFactory.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html; diff --git a/src/Exception.php b/src/Exception.php index a8f1185..e6f1776 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html; diff --git a/src/Exception/EncodingNotSupported.php b/src/Exception/EncodingNotSupported.php index 20a4269..a4d3f54 100644 --- a/src/Exception/EncodingNotSupported.php +++ b/src/Exception/EncodingNotSupported.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Exception; diff --git a/src/Exception/ExtensionNotInstalled.php b/src/Exception/ExtensionNotInstalled.php index a78a2d5..6e82f01 100644 --- a/src/Exception/ExtensionNotInstalled.php +++ b/src/Exception/ExtensionNotInstalled.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Exception; diff --git a/src/Exception/HelperNotFound.php b/src/Exception/HelperNotFound.php index def2912..6723320 100644 --- a/src/Exception/HelperNotFound.php +++ b/src/Exception/HelperNotFound.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Exception; diff --git a/src/Exception/InvalidArgument.php b/src/Exception/InvalidArgument.php index 40ae18f..6acac83 100644 --- a/src/Exception/InvalidArgument.php +++ b/src/Exception/InvalidArgument.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Exception; diff --git a/src/Exception/InvalidUtf8.php b/src/Exception/InvalidUtf8.php index 69ee3c8..bd7f368 100644 --- a/src/Exception/InvalidUtf8.php +++ b/src/Exception/InvalidUtf8.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Exception; diff --git a/src/Helper/AbstractElement.php b/src/Helper/AbstractElement.php index 7e4dce0..5490b11 100644 --- a/src/Helper/AbstractElement.php +++ b/src/Helper/AbstractElement.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/AbstractHelper.php b/src/Helper/AbstractHelper.php index 61f0f1a..d13b6e9 100644 --- a/src/Helper/AbstractHelper.php +++ b/src/Helper/AbstractHelper.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/AbstractList.php b/src/Helper/AbstractList.php index 02c22b5..c945e0b 100644 --- a/src/Helper/AbstractList.php +++ b/src/Helper/AbstractList.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/AbstractSeries.php b/src/Helper/AbstractSeries.php index 23c27a7..f72983c 100644 --- a/src/Helper/AbstractSeries.php +++ b/src/Helper/AbstractSeries.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Anchor.php b/src/Helper/Anchor.php index 79dee0f..b0becda 100644 --- a/src/Helper/Anchor.php +++ b/src/Helper/Anchor.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/AnchorRaw.php b/src/Helper/AnchorRaw.php index 3333fc1..a8bc051 100644 --- a/src/Helper/AnchorRaw.php +++ b/src/Helper/AnchorRaw.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Base.php b/src/Helper/Base.php index 551acfb..ed4c3c5 100644 --- a/src/Helper/Base.php +++ b/src/Helper/Base.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Element.php b/src/Helper/Element.php index 3b49915..ba8bc87 100644 --- a/src/Helper/Element.php +++ b/src/Helper/Element.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/ElementRaw.php b/src/Helper/ElementRaw.php index a940424..05546ea 100644 --- a/src/Helper/ElementRaw.php +++ b/src/Helper/ElementRaw.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Form.php b/src/Helper/Form.php index 6d27c45..a120b13 100644 --- a/src/Helper/Form.php +++ b/src/Helper/Form.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Img.php b/src/Helper/Img.php index a1c1c6d..39dc580 100644 --- a/src/Helper/Img.php +++ b/src/Helper/Img.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Input.php b/src/Helper/Input.php index b4b6ea0..bc4bec8 100644 --- a/src/Helper/Input.php +++ b/src/Helper/Input.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Input/AbstractChecked.php b/src/Helper/Input/AbstractChecked.php index 1c05772..3e8fb4c 100644 --- a/src/Helper/Input/AbstractChecked.php +++ b/src/Helper/Input/AbstractChecked.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/AbstractInput.php b/src/Helper/Input/AbstractInput.php index 3677683..9591804 100644 --- a/src/Helper/Input/AbstractInput.php +++ b/src/Helper/Input/AbstractInput.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/Checkbox.php b/src/Helper/Input/Checkbox.php index e8ac607..9e404cf 100644 --- a/src/Helper/Input/Checkbox.php +++ b/src/Helper/Input/Checkbox.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/Generic.php b/src/Helper/Input/Generic.php index 1dacc18..edd444a 100644 --- a/src/Helper/Input/Generic.php +++ b/src/Helper/Input/Generic.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/Radio.php b/src/Helper/Input/Radio.php index 6c0fd8a..6bd4a94 100644 --- a/src/Helper/Input/Radio.php +++ b/src/Helper/Input/Radio.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/Select.php b/src/Helper/Input/Select.php index 2da788e..0f5e5db 100644 --- a/src/Helper/Input/Select.php +++ b/src/Helper/Input/Select.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Input/Textarea.php b/src/Helper/Input/Textarea.php index 446cf99..7dc32c6 100644 --- a/src/Helper/Input/Textarea.php +++ b/src/Helper/Input/Textarea.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper\Input; diff --git a/src/Helper/Label.php b/src/Helper/Label.php index aa04485..aa051a6 100644 --- a/src/Helper/Label.php +++ b/src/Helper/Label.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Links.php b/src/Helper/Links.php index b6a6f05..bc16846 100644 --- a/src/Helper/Links.php +++ b/src/Helper/Links.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Metas.php b/src/Helper/Metas.php index c129681..ea04f1c 100644 --- a/src/Helper/Metas.php +++ b/src/Helper/Metas.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Ol.php b/src/Helper/Ol.php index 5ce83e2..ef046ed 100644 --- a/src/Helper/Ol.php +++ b/src/Helper/Ol.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Scripts.php b/src/Helper/Scripts.php index b20b27a..0aff6fb 100644 --- a/src/Helper/Scripts.php +++ b/src/Helper/Scripts.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Structure.php b/src/Helper/Structure.php index 1d2b21d..ddbe3f0 100644 --- a/src/Helper/Structure.php +++ b/src/Helper/Structure.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/StructureRaw.php b/src/Helper/StructureRaw.php index e1ce586..d38887f 100644 --- a/src/Helper/StructureRaw.php +++ b/src/Helper/StructureRaw.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Styles.php b/src/Helper/Styles.php index 8768699..42ed16d 100644 --- a/src/Helper/Styles.php +++ b/src/Helper/Styles.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Tag.php b/src/Helper/Tag.php index 3937f1f..4ffea8d 100644 --- a/src/Helper/Tag.php +++ b/src/Helper/Tag.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Title.php b/src/Helper/Title.php index ce97fcd..e3f9da7 100644 --- a/src/Helper/Title.php +++ b/src/Helper/Title.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/Ul.php b/src/Helper/Ul.php index 47b9a52..e040d4a 100644 --- a/src/Helper/Ul.php +++ b/src/Helper/Ul.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/Helper/VoidTag.php b/src/Helper/VoidTag.php index 94aa8cd..9d52b19 100644 --- a/src/Helper/VoidTag.php +++ b/src/Helper/VoidTag.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html\Helper; diff --git a/src/HelperLocator.php b/src/HelperLocator.php index 17f7f57..77fb9c2 100644 --- a/src/HelperLocator.php +++ b/src/HelperLocator.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html; diff --git a/src/HelperLocatorFactory.php b/src/HelperLocatorFactory.php index 42373f7..9042573 100644 --- a/src/HelperLocatorFactory.php +++ b/src/HelperLocatorFactory.php @@ -3,7 +3,7 @@ * * This file is part of Aura for PHP. * - * @license http://opensource.org/licenses/bsd-license.php BSD + * @license http://opensource.org/licenses/MIT-license.php MIT * */ namespace Aura\Html;