-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init * updating copy * updating min php
- Loading branch information
Showing
21 changed files
with
96 additions
and
387 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Project Specific | ||
/public | ||
/vendor | ||
/vendor-prefixed | ||
/node_modules | ||
/storybook | ||
.DS_Store |
This file was deleted.
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
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 was deleted.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
/** | ||
* Plugin Name: Eightshift Boilerplate Setup Plugin | ||
* Description: This is a initial setup for the Eightshift WordPress Boilerplate Plugin. | ||
* Author: Eightshift team | ||
* Author URI: https://eightshift.com/ | ||
* Version: 5.0.0 | ||
* License: MIT | ||
* License URI: http://www.gnu.org/licenses/gpl.html | ||
* Text Domain: eightshift-boilerplate-plugin | ||
* | ||
* @package EightshiftBoilerplatePlugin | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace EightshiftBoilerplatePlugin; | ||
|
||
use EightshiftLibs\Cli\Cli; | ||
|
||
/** | ||
* If this file is called directly, abort. | ||
*/ | ||
if (! \defined('WPINC')) { | ||
die; | ||
} | ||
|
||
/** | ||
* Include the autoloader so we can dynamically include the rest of the classes. | ||
*/ | ||
if (!\file_exists(__DIR__ . '/vendor/autoload.php')) { | ||
return; | ||
} | ||
|
||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
/** | ||
* Run all WPCLI commands. | ||
*/ | ||
if (class_exists(Cli::class)) { | ||
(new Cli())->load('boilerplate'); | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.