Skip to content

Commit 3030141

Browse files
committed
Added License
1 parent 03e6624 commit 3030141

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

LICENSE

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
php-enum - PHP Enum implementation http://github.com/myc-sense/php-enum
2+
3+
Copyright (C) 2013 My C-Sense
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6+
associated documentation files (the "Software"), to deal in the Software without restriction,
7+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
9+
subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all copies or substantial
12+
portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
15+
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
17+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "myc-sense/php-enum",
33
"type": "library",
44
"description": "PHP Enum implementation",
5+
"keywords": ["enum"],
6+
"homepage": "http://github.com/myc-sense/php-enum",
7+
"license": "MIT",
58
"autoload": {
69
"psr-0": {
710
"Mycsense": "src/"

src/Mycsense/Enum/Enum.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
/**
3+
* @link http://github.com/myc-sense/php-enum
34
* @author Matthieu Napoli <[email protected]>
5+
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
46
*/
57

68
namespace Mycsense\Enum;

tests/UnitTest/Mycsense/Enum/EnumTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
/**
3+
* @link http://github.com/myc-sense/php-enum
34
* @author Matthieu Napoli <[email protected]>
5+
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
46
*/
57

68
namespace UnitTest\Mycsense\Enum\Enum;

0 commit comments

Comments
 (0)