Skip to content

Commit 610a0cd

Browse files
author
Rafael Grigorian
committed
Added MIT License
1 parent 793fc2d commit 610a0cd

File tree

27 files changed

+46
-4
lines changed

27 files changed

+46
-4
lines changed

LICENSE.md

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Magento 2 - Varnish
22
> Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend
33
4-
![MIT License](https://img.shields.io/badge/License-UNLICENSED-lightgrey.svg?style=for-the-badge)
4+
![MIT License](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)
55
![Version 1.1.2](https://img.shields.io/badge/Version-1.1.2-lightgrey.svg?style=for-the-badge)
66
![Stability Beta](https://img.shields.io/badge/Stability-Beta-lightgrey.svg?style=for-the-badge)
77

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jetrails/magento2-varnish",
33
"description": "Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend",
44
"type": "project",
5-
"license": "UNLICENSED",
5+
"license": "MIT",
66
"authors": [
77
{
88
"name": "Rafael Grigorian",

design/user_guide.sketch

10.8 KB
Binary file not shown.

docs/user_guide.pdf

6.72 KB
Binary file not shown.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "Varnish",
33
"version": "1.1.2",
4-
"description": "Magento 2 - Manage Varnish Cache",
4+
"description": "Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/jetrails/varnish.git"
88
},
99
"company": "JetRails®",
1010
"author": "Rafael Grigorian",
11-
"license": "UNLICENSED",
11+
"license": "MIT",
1212
"copyright": "JetRails®, all rights reserved",
1313
"bugs": {
1414
"url": "https://github.com/jetrails/varnish/issues"

src/app/code/JetRails/Varnish/Block/Adminhtml/System/Config/Form/Link.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* @category Form
1515
* @author Rafael Grigorian - JetRails®
1616
* @copyright JetRails®, all rights reserved
17+
* @license MIT https://opensource.org/licenses/MIT
1718
*/
1819
class Link extends Field {
1920

src/app/code/JetRails/Varnish/Console/Command/AbstractCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* @category Status
2020
* @author Rafael Grigorian - JetRails®
2121
* @copyright JetRails®, all rights reserved
22+
* @license MIT https://opensource.org/licenses/MIT
2223
*/
2324
abstract class AbstractCommand extends Command {
2425

src/app/code/JetRails/Varnish/Console/Command/Purge/All.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* @category Purge
1414
* @author Rafael Grigorian - JetRails®
1515
* @copyright JetRails®, all rights reserved
16+
* @license MIT https://opensource.org/licenses/MIT
1617
*/
1718
class All extends AbstractCommand {
1819

src/app/code/JetRails/Varnish/Console/Command/Purge/Store.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* @category Purge
1818
* @author Rafael Grigorian - JetRails®
1919
* @copyright JetRails®, all rights reserved
20+
* @license MIT https://opensource.org/licenses/MIT
2021
*/
2122
class Store extends AbstractCommand {
2223

0 commit comments

Comments
 (0)