Skip to content

Commit 4c42a20

Browse files
committed
AT-716: Update Inpsyde in code to Syde (license, copyright, text)
1 parent 52c8a63 commit 4c42a20

22 files changed

+51
-204
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ convey the exclusion of warranty; and each file should have at least
306306
the "copyright" line and a pointer to where the full notice is found.
307307

308308
one line to give the program's name and an idea of what it does.
309-
Copyright (C) 2020 Inpsyde GmbH
309+
Copyright (C) 2020 Syde GmbH
310310

311311
This program is free software; you can redistribute it and/or
312312
modify it under the terms of the GNU General Public License

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ Via Composer, package name is **`inpsyde/metabox-orchestra`**.
404404

405405
---
406406

407-
## License and Copyright
407+
## Copyright and License
408+
409+
This package is [free software](https://www.gnu.org/philosophy/free-sw.en.html) distributed under the terms of the GNU General Public License version 2 or (at your option) any later version. For the full license, see [LICENSE](./LICENSE).
408410

409-
This repository is a free software, and is released under the terms of the GNU General Public License version 2 or (at your option) any later version. See [LICENSE](./LICENSE) for complete license.

composer.json

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "inpsyde/metabox-orchestra",
3-
"description": "Package for OOP WordPress metabox orchestration.",
4-
"type": "library",
5-
"license": "GPL-2.0-or-later",
6-
"authors": [
7-
{
8-
"name": "Inpsyde GmbH",
9-
"email": "hello@inpsyde.com",
10-
"homepage": "http://inpsyde.com",
11-
"role": "Company"
2+
"name": "inpsyde/metabox-orchestra",
3+
"description": "Package for OOP WordPress metabox orchestration.",
4+
"type": "library",
5+
"license": "GPL-2.0-or-later",
6+
"authors": [
7+
{
8+
"name": "Syde GmbH",
9+
"homepage": "https://syde.com/",
10+
"email": "hello@syde.com",
11+
"role": "Company"
12+
},
13+
{
14+
"name": "Giuseppe Mazzapica",
15+
"email": "g.mazzapica@syde.com",
16+
"role": "Developer"
17+
},
18+
{
19+
"name": "Christian Leucht",
20+
"email": "c.leucht@syde.com",
21+
"role": "Developer"
22+
}
23+
],
24+
"minimum-stability": "stable",
25+
"require": {
26+
"php": ">=7.2",
27+
"brain/nonces": "^1.0"
1228
},
13-
{
14-
"name": "Giuseppe Mazzapica",
15-
"email": "g.mazzapica@inpsyde.com",
16-
"role": "Developer"
29+
"require-dev": {
30+
"phpunit/phpunit": "^8 | ^9",
31+
"doctrine/instantiator": "^1.0",
32+
"brain/monkey": "^2"
1733
},
18-
{
19-
"name": "Christian Leucht",
20-
"email": "c.leucht@inpsyde.com",
21-
"role": "Developer"
22-
}
23-
],
24-
"minimum-stability": "stable",
25-
"require": {
26-
"php": ">=7.2",
27-
"brain/nonces": "^1.0"
28-
},
29-
"require-dev": {
30-
"phpunit/phpunit": "^8 | ^9",
31-
"doctrine/instantiator": "^1.0",
32-
"brain/monkey": "^2"
33-
},
34-
"autoload": {
35-
"psr-4": {
36-
"MetaboxOrchestra\\": "src/"
37-
}
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"MetaboxOrchestra\\Tests\\": "tests/src/"
42-
}
43-
},
44-
"config": {
45-
"optimize-autoloader": true
46-
},
47-
"extra": {
48-
"branch-alias": {
49-
"dev-master": "0.x-dev"
34+
"autoload": {
35+
"psr-4": {
36+
"MetaboxOrchestra\\": "src/"
37+
}
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"MetaboxOrchestra\\Tests\\": "tests/src/"
42+
}
43+
},
44+
"config": {
45+
"optimize-autoloader": true
46+
},
47+
"extra": {
48+
"branch-alias": {
49+
"dev-master": "0.x-dev"
50+
}
5051
}
51-
}
5252
}

src/AdminNotices.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php declare( strict_types=1 ); # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package metabox-orchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
class AdminNotices {
189

src/Bootstrap.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php declare( strict_types=1 ); # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package metabox-orchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
class Bootstrap {
189

src/BoxAction.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package metabox-orchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
interface BoxAction {
189

src/BoxInfo.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php declare( strict_types=1 ); # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package metabox-orchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
final class BoxInfo implements \ArrayAccess {
189

src/BoxView.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package metabox-orchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
interface BoxView {
189

src/Boxes.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
11
<?php declare( strict_types=1 ); # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
use Brain\Nonces\WpNonce;
146

157
/**
168
* @package metabox-orchestra
17-
* @license http://opensource.org/licenses/MIT MIT
189
*/
1910
class Boxes {
2011

src/Entity.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<?php # -*- coding: utf-8 -*-
2-
/*
3-
* This file is part of the metabox-orchestra package.
4-
*
5-
* (c) Inpsyde GmbH
6-
*
7-
* For the full copyright and license information, please view the LICENSE
8-
* file that was distributed with this source code.
9-
*/
102

113
namespace MetaboxOrchestra;
124

135
/**
146
* @package MetaboxOrchestra
15-
* @license http://opensource.org/licenses/MIT MIT
167
*/
178
class Entity {
189

0 commit comments

Comments
 (0)