Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29c9dae

Browse files
committed
Base for Intrinio API class.
1 parent 659a4c3 commit 29c9dae

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ composer.phar
44
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
55
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
66
# composer.lock
7+
/.phpintel/

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
"php": "^7.0",
77
"rmccue/requests": "^1.7"
88
},
9+
"autoload": {
10+
"psr-4": {
11+
"Elvismdev\\Intrinio\\": "src/"
12+
}
13+
},
914
"license": "MIT",
1015
"authors": [
1116
{

src/Intrinio.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Elvis\Intrinio;
4+
5+
/**
6+
* Intrinio Client
7+
*/
8+
class Intrinio extends IntrinioApi {
9+
10+
function __construct() {
11+
# code...
12+
}
13+
}

0 commit comments

Comments
 (0)