Skip to content

Commit

Permalink
Integration API Meeting - GET - DELETE - CREATE
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyhuirilef committed Oct 26, 2020
0 parents commit 2e0fa49
Show file tree
Hide file tree
Showing 16 changed files with 3,516 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file is a "template" of which env vars need to be defined for testing
WHEREBY_ACCESS_TOKEN=''
TEST_WHEREBY_MEETING_ID_GET=''
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/vendor/
/.env
/.idea/
/.phpunit.result.cache
43 changes: 43 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "enius/whereby",
"description": "PHP Library based on Guzzle to consume Whereby.com API",
"type": "library",
"keywords": [
"whereby",
"api",
"guzzle"
],
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"ext-json": "*",
"symfony/serializer": "^3.0|^4.0|^5.0",
"symfony/property-access": "^3.0|^4.0|^5.0"
},
"require-dev": {
"symfony/dotenv": "^3.0|^4.0|^5.0",
"symfony/var-dumper": "^3.0|^4.0|^5.0",
"phpunit/phpunit": "^8.5"
},
"license": "MIT",
"authors": [
{
"name": "Johnny J. Huirilef Millán",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Enius\\Whereby\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enius\\Whereby\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests"
}
}
Loading

0 comments on commit 2e0fa49

Please sign in to comment.