Commit 89f9acec authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

composer.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
	"name": "kodo.org.uk/wp-test-plugin",
	"description": "A plugin used to behaviour test WP deployment solutions",
	"type": "wordpress-plugin"
}

wp-test-plugin.php

0 → 100644
+14 −0
Original line number Diff line number Diff line
<?php

/*
Plugin Name: WP Test Plugin
Description: A plugin used to behaviour test WP deployment solutions
*/


// Works in the most stupidly simple way possible

if ($_SERVER['REQUEST_URI'] == '/wp-test-installed') {
	echo("installed");
	exit;
}