Skip to content

Commit 4ea86df

Browse files
committed
Change license to MIT
Closes #104
1 parent 5b841dc commit 4ea86df

File tree

3 files changed

+37
-12
lines changed

3 files changed

+37
-12
lines changed

LICENSE

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

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,4 @@ Please note that this library does not resolve SRV records, you will need to do
8282
Take a look at [this issue](https://github.com/xPaw/PHP-Minecraft-Query/issues/34) for an example script.
8383

8484
## License
85-
> *This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.<br>
86-
> To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/*
85+
[MIT](LICENSE)

composer.json

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
2-
"name": "xpaw/php-minecraft-query",
3-
"description": "A Minecraft Server query handler for php",
4-
"license": "CC BY-NC-SA 3.0",
5-
"keywords": ["minecraft"],
6-
"require": {
7-
"php": ">=5.4"
8-
},
9-
"autoload": {
10-
"psr-4": { "xPaw\\": "src" }
11-
}
2+
"name": "xpaw/php-minecraft-query",
3+
"description": "PHP library to query Minecraft servers",
4+
"license": "MIT",
5+
"keywords":
6+
[
7+
"minecraft"
8+
],
9+
"require":
10+
{
11+
"php": ">=5.4"
12+
},
13+
"autoload":
14+
{
15+
"psr-4": { "xPaw\\": "src" }
16+
}
1217
}

0 commit comments

Comments
 (0)