summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 10:29:03 -0400
committerAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 10:29:03 -0400
commit0e735d3719d254c0fbaf5ae3c3d0b191bb973b6b (patch)
treebb4c0f9d35da3136c08a8989c8087505f8777637
parent720b41727270a8509dedfb5ff2d03e27269d51d8 (diff)
downloadpassword_compat-0e735d3719d254c0fbaf5ae3c3d0b191bb973b6b.zip
password_compat-0e735d3719d254c0fbaf5ae3c3d0b191bb973b6b.tar.gz
password_compat-0e735d3719d254c0fbaf5ae3c3d0b191bb973b6b.tar.bz2
Update license information to MIT License
-rw-r--r--LICENSE.md7
-rw-r--r--composer.json2
-rw-r--r--lib/password.php2
3 files changed, 9 insertions, 2 deletions
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..1efc565
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,7 @@
+Copyright (c) 2012 Anthony Ferrara
+
+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:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+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. \ No newline at end of file
diff --git a/composer.json b/composer.json
index 880c564..07797a1 100644
--- a/composer.json
+++ b/composer.json
@@ -4,7 +4,7 @@
"version": "1.0.0-beta1",
"keywords": ["password", "hashing"],
"homepage": "https://github.com/ircmaxell/password_compat",
- "license": "PHP",
+ "license": "MIT",
"authors": [
{
"name": "Anthony Ferrara",
diff --git a/lib/password.php b/lib/password.php
index dec0590..c843a61 100644
--- a/lib/password.php
+++ b/lib/password.php
@@ -3,7 +3,7 @@
* A Compatibility library with PHP 5.5's simplified password hashing API.
*
* @author Anthony Ferrara <ircmaxell@php.net>
- * @license http://www.php.net/license/3_01.txt PHP 3.0.1
+ * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @copyright 2012 The Authors
*/