Skip to content

Commit

Permalink
Signed-off-by: nik kyriakidis <nik@pushworth.com>
Browse files Browse the repository at this point in the history
  • 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.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nbproject
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

26 changes: 26 additions & 0 deletions Wordsmith.php
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();
15 changes: 15 additions & 0 deletions composer.json
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": "*"
}
}
Loading
Oops, something went wrong.

0 comments on commit fd1a826

Please sign in to comment.