Skip to content

Commit

Permalink
Test Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AdnanHussainTurki committed Jan 26, 2021
0 parents commit 5d27bdd
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
22 changes: 22 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "adnanhussainturki/google-my-business-php",
"description": "A GOTO PHP Wrapper for GoogleMyBusiness",
"type": "library",
"require": {
"google/apiclient": "^2.9"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"license": "MIT",
"authors": [
{
"name": "Adnan Hussain Turki",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {"AdnanHussainTurki": "src/"}
},
}
20 changes: 20 additions & 0 deletions src/GoogleMyBusiness.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

namespace AdnanHussainTurki;

/**
* GoogleMyBusiness
* v0.1
*/
class GoogleMyBusiness
{

function __construct()
{

}
public function greet()
{
return "SILENCE IS GOLDEN";
}
}

0 comments on commit 5d27bdd

Please sign in to comment.