Skip to content

Commit 684435f

Browse files
committed
MIT → GPL-3.0
1 parent 37687dc commit 684435f

36 files changed

+817
-29
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44

5+
- CKEditor is now released under the GPL-3.0 license.
56
- HTML Purifier is now configured to allow `style` attributes on `<ol>` and `<ul>` tags, when bulleted/numbered lists are allowed. ([#136](https://github.com/craftcms/ckeditor/issues/136))
67

78
## 3.5.1 - 2023-08-29

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

LICENSE.txt

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"ckeditor",
1010
"yii2"
1111
],
12-
"license": "MIT",
12+
"license": "GPL-3.0-or-later",
1313
"authors": [
1414
{
1515
"name": "Pixel & Tonic",

src/CkeConfig.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor;
49

src/CkeConfigs.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor;
49

src/Field.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor;
49

src/Plugin.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor;
49

src/console/controllers/ConvertController.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor\console\controllers;
49

src/controllers/CkeConfigsController.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* @link https://craftcms.com/
4+
* @copyright Copyright (c) Pixel & Tonic, Inc.
5+
* @license GPL-3.0-or-later
6+
*/
27

38
namespace craft\ckeditor\controllers;
49

0 commit comments

Comments
 (0)