-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ead013e
commit 5a38fad
Showing
45 changed files
with
161 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,26 @@ | ||
{ | ||
"name": "veronalabs/framework", | ||
"description": "", | ||
"name": "veronalabs/rabbit", | ||
"description": "A modern way of building WordPress plugins.", | ||
"keywords": [ | ||
"wordpress", | ||
"pressmodo", | ||
"sematico", | ||
"backyard", | ||
"rabbit", | ||
"framework" | ||
], | ||
"homepage": "https://backyard.sematico.com", | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Alessandro Tesoro", | ||
"email": "[email protected]", | ||
"homepage": "https://sematico.com", | ||
"role": "Founder & MD" | ||
} | ||
], | ||
"homepage": "https://github.com/veronalabs/rabbit", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/backyardwp/framework/issues" | ||
"issues": "https://github.com/veronalabs/rabbit/issues" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Backyard\\": "src" | ||
"Rabbit\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Backyard\\Tests\\": "tests" | ||
"Rabbit\\Tests\\": "tests" | ||
} | ||
}, | ||
"require": { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<?php // phpcs:ignore WordPress.Files.FileName | ||
/** | ||
* Backyard plugin application. | ||
* Rabbit plugin application. | ||
* | ||
* @package backyard-framwork | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard; | ||
namespace Rabbit; | ||
|
||
use Backyard\Utils\Singleton; | ||
use Rabbit\Utils\Singleton; | ||
|
||
/** | ||
* Framework application wrapper. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?php // phpcs:ignore WordPress.Files.FileName | ||
/** | ||
* Backyard object cache helper | ||
* Rabbit object cache helper | ||
* | ||
* @package backyard-cache | ||
* @package rabbit-cache | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Cache; | ||
namespace Rabbit\Cache; | ||
|
||
/** | ||
* Object cache helper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?php // phpcs:ignore WordPress.Files.FileName | ||
/** | ||
* Backyard transients helper | ||
* Rabbit transients helper | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Cache; | ||
namespace Rabbit\Cache; | ||
|
||
/** | ||
* Transients helper. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
/** | ||
* Bootable plugin provider interface. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Contracts; | ||
namespace Rabbit\Contracts; | ||
|
||
use League\Container\ServiceProvider\ServiceProviderInterface; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
/** | ||
* Form render interface. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Contracts; | ||
namespace Rabbit\Contracts; | ||
|
||
interface FormRendererInterface { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
/** | ||
* Definition of the public contract to be available on a ParameterBag instance | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Contracts; | ||
namespace Rabbit\Contracts; | ||
|
||
interface ParameterBagInterface extends \Countable, \IteratorAggregate { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
/** | ||
* Definition of the public contract to be available on a templates engine extension instance. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Contracts; | ||
namespace Rabbit\Contracts; | ||
|
||
use Backyard\Templates\Engine; | ||
use Rabbit\Templates\Engine; | ||
|
||
interface TemplatesEngineExtensionInterface { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
/** | ||
* Invalid nonce exception. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Exceptions; | ||
namespace Rabbit\Exceptions; | ||
|
||
use Exception; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
/** | ||
* Missing configuration setting exception. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Exceptions; | ||
namespace Rabbit\Exceptions; | ||
|
||
use Exception; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
/** | ||
* Nonces handler. | ||
* | ||
* @package backyard-framework | ||
* @package rabbit-framework | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Nonces; | ||
namespace Rabbit\Nonces; | ||
|
||
use Backyard\Exceptions\InvalidNonceException; | ||
use Rabbit\Exceptions\InvalidNonceException; | ||
|
||
/** | ||
* WordPress nonces handler & generator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
/** | ||
* Nonces factory. | ||
* | ||
* @package backyard-nonces | ||
* @package rabbit-nonces | ||
* @author Sematico LTD <[email protected]> | ||
* @copyright 2020 Sematico LTD | ||
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later | ||
* @link https://sematico.com | ||
*/ | ||
|
||
namespace Backyard\Nonces; | ||
namespace Rabbit\Nonces; | ||
|
||
use Backyard\Utils\RequestFactory; | ||
use Rabbit\Utils\RequestFactory; | ||
|
||
/** | ||
* Nonce factory | ||
|
Oops, something went wrong.