Skip to content

Commit 3a13c3a

Browse files
author
Vlad Pronsky
committed
Change license to MIT.
1 parent 0a0ba67 commit 3a13c3a

File tree

5 files changed

+31
-4
lines changed

5 files changed

+31
-4
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) 2013 Vlad Pronsky <[email protected]>
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
13+
all 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
21+
THE SOFTWARE.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848

4949
\* Если нужно получить бесконечный токен, используете параметр `offline` в `{API_SETTINGS}`.
5050

51+
### Лицензия
52+
[MIT](https://raw.github.com/vladkens/VK/master/LICENSE)
53+
5154
## English
5255

5356
The PHP class for vk.com API and to support OAuth.
@@ -94,4 +97,7 @@ You can ask me any questions by e-mail: <[email protected]>
9497
* `{METHOD_NAME}` — Name of the API method. [All methods.](http://vk.com/developers.php?oid=-17680044&p=API_Method_Description)
9598
* `{PARAMETERS}` — Parameters of the corresponding API methods.
9699

97-
\* If you need infinite token use key `offline` in `{API_SETTINGS}`.
100+
\* If you need infinite token use key `offline` in `{API_SETTINGS}`.
101+
102+
### License
103+
[MIT](https://raw.github.com/vladkens/VK/master/LICENSE)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "library",
44
"description": "The PHP class for vk.com API with support OAuth.",
55
"keywords": ["vk", "vk.com", "api", "oauth"],
6-
"license": "GPL-3.0",
6+
"license": "MIT",
77
"authors": [
88
{
99
"name": "Vlad Pronsky",

src/VK/VK.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* The PHP class for vk.com API and to support OAuth.
55
* @author Vlad Pronsky <[email protected]>
6-
* @license http://www.gnu.org/licenses/gpl.html GPL-3.0
6+
* @license https://raw.github.com/vladkens/VK/master/LICENSE MIT
77
* @version 0.1.6
88
*/
99

src/VK/VKException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* The exception class for VK library.
55
* @author Vlad Pronsky <[email protected]>
6-
* @license http://www.gnu.org/licenses/gpl.html GPL-3.0
6+
* @license https://raw.github.com/vladkens/VK/master/LICENSE MIT
77
* @version 0.1.6
88
*/
99

0 commit comments

Comments
 (0)