Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
abhij89 committed Dec 23, 2020
0 parents commit e6b7eb6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
19 changes: 19 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "abhij89/utm-referer",
"description": "A simple package to get the referer and utm parameters for a new user",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Abhishek jain",
"email": "abhij89@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Abhij89\\UTMReferer\\": "src/"
}
},
"require": {}
}
11 changes: 11 additions & 0 deletions src/UTMReferer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Abhij89\UTMReferer;

class UTMReferer {

public function greet(String $sName) {
return 'Hi ' . $sName . '! How are you doing today?';
}

}

0 comments on commit e6b7eb6

Please sign in to comment.