Skip to content

Instantly share code, notes, and snippets.

View ikeogu's full-sized avatar
🏠
Working from home

Emmanuel chidera ikeogu

🏠
Working from home
View GitHub Profile
@ikeogu
ikeogu / plate query php
Created February 16, 2022 19:59
Qualified asseement
class PlantQueryFilterTest extends TestCase {
function createSmallData() {
return [
[
'id' => 11,
'scientific_name' => 'Phacelia scopulina (A. Nelson) J.T. Howell var. scopulina',
'common_name' => 'Debeque Phacelia',
'family' => 'Hydrophyllaceae'
],
[
@ikeogu
ikeogu / urlsigning.php
Created November 26, 2021 12:25 — forked from paulferrett/urlsigning.php
Simple URL signing helper class written in PHP. Use this to generate and verify signed URLs with a shared secret.
<?php
/**
* Url Signing Helper Class
*
* @author Paul Ferrett <paul.ferrett@servicecentral.com.au>
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
class UrlSigning {