Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Issue/116 - License: change from GPL to MIT. #122

Merged
merged 1 commit into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
383 changes: 22 additions & 361 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package Database
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 2.0.0
*/

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "berlindb/core",
"description": "A collection of PHP classes and functions that aims to provide an ORM-like experience and interface to WordPress database tables.",
"type": "library",
"license": "GPL-2.0-only",
"license": "MIT",
"require": {},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Base
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Column
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Queries/Compare.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Compare
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database\Queries;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Queries/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Date
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database\Queries;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Queries/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Meta
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.1.0
*/
namespace BerlinDB\Database\Queries;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Query
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Row.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Row
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Schema
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Database
* @subpackage Table
* @copyright Copyright (c) 2021
* @license https://opensource.org/licenses/gpl-2.0.php GNU Public License
* @license https://opensource.org/licenses/MIT MIT
* @since 1.0.0
*/
namespace BerlinDB\Database;
Expand Down