-
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.
Signed-off-by: nik kyriakidis <nik@pushworth.com>
- Loading branch information
nik kyriakidis
committed
Jun 13, 2016
1 parent
e913243
commit fd1a826
Showing
437 changed files
with
43,007 additions
and
4 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nbproject |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
/* | ||
Plugin Name: WordSmith Framework | ||
Plugin URI: http://nk2580.github.io/WordSmith/ | ||
Description: Powerful Apps With Minimal Effort. | ||
Version: 0.1.1.4 | ||
Author: Nik kyriakidis | ||
*/ | ||
|
||
namespace nk2580\wordsmith; | ||
|
||
class Framework { | ||
|
||
/** | ||
* include all files required for the framework | ||
*/ | ||
public static function Boot() { | ||
//inlcude the composer package and it's dependancies | ||
require_once 'vendor/autoload.php'; | ||
} | ||
|
||
} | ||
|
||
//INIT THE FRAMEWORK | ||
Framework::Boot(); |
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,15 @@ | ||
{ | ||
"name": "nk2580/wordsmith-framework-plugin", | ||
"type": "library", | ||
"description": "The Modern PHP WordPress library plugin", | ||
"license": "GPL-2.0", | ||
"authors": [ | ||
{ | ||
"name": "nik kyriakidis", | ||
"email": "nik.k2580@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"nk2580/wordsmith": "*" | ||
} | ||
} |
Oops, something went wrong.