Skip to content

Commit

Permalink
Created files to test the package
Browse files Browse the repository at this point in the history
  • Loading branch information
mvgijssel committed Apr 7, 2014
1 parent 3096b33 commit f175a79
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace vg;

class Test
{
function __construct()
{
echo "Created!";
}
}
7 changes: 6 additions & 1 deletion test_plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@
Description: Plugin for testing the wordpress-plugin framework
Author: Maarten van Gijssel
Version: 0.1
Author URI: http://localhost*/
Author URI: http://localhost*/

// require the composer autoloader
require_once __DIR__ . '/vendor/autoload.php';

$t = new vg\Test();

0 comments on commit f175a79

Please sign in to comment.