Skip to content

Commit 6deec4b

Browse files
committed
upload first version
0 parents  commit 6deec4b

File tree

15 files changed

+1473
-0
lines changed

15 files changed

+1473
-0
lines changed

.gitignore

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Composer template
3+
composer.phar
4+
/vendor/
5+
6+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
7+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
8+
# composer.lock
9+
### JetBrains template
10+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
11+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
12+
13+
# User-specific stuff
14+
.idea/**/workspace.xml
15+
.idea/**/tasks.xml
16+
.idea/**/dictionaries
17+
.idea/**/shelf
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# CMake
33+
cmake-build-debug/
34+
cmake-build-release/
35+
36+
# Mongo Explorer plugin
37+
.idea/**/mongoSettings.xml
38+
39+
# File-based project format
40+
*.iws
41+
42+
# IntelliJ
43+
out/
44+
45+
# mpeltonen/sbt-idea plugin
46+
.idea_modules/
47+
48+
# JIRA plugin
49+
atlassian-ide-plugin.xml
50+
51+
# Cursive Clojure plugin
52+
.idea/replstate.xml
53+
54+
# Crashlytics plugin (for Android Studio and IntelliJ)
55+
com_crashlytics_export_strings.xml
56+
crashlytics.properties
57+
crashlytics-build.properties
58+
fabric.properties
59+
60+
# Editor-based Rest Client
61+
.idea/httpRequests
62+
### macOS template
63+
# General
64+
.DS_Store
65+
.AppleDouble
66+
.LSOverride
67+
68+
# Icon must end with two \r
69+
Icon
70+
71+
# Thumbnails
72+
._*
73+
74+
# Files that might appear in the root of a volume
75+
.DocumentRevisions-V100
76+
.fseventsd
77+
.Spotlight-V100
78+
.TemporaryItems
79+
.Trashes
80+
.VolumeIcon.icns
81+
.com.apple.timemachine.donotpresent
82+
83+
# Directories potentially created on remote AFP share
84+
.AppleDB
85+
.AppleDesktop
86+
Network Trash Folder
87+
Temporary Items
88+
.apdisk
89+

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# SDK PHP para API Mitryusweb (Work in progress)
2+
3+
### Documentação:
4+
5+
https://www.mitryus.com.br:8191/MitryusReports/integracao.xhtml#metodoslayout
6+
7+
### Requerimento:
8+
* PHP >= 7.1
9+
* Json extension
10+
* Curl extension
11+
12+
### Pacotes usados:
13+
14+
* guzzlehttp/guzzle: ^6.3
15+
* nesbot/carbon: ^1.36
16+
* illuminate/support: ^5.7

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "prhost/mitryusweb-sdk",
3+
"description": "SDK para integracao com Mitryusweb",
4+
"type": "library",
5+
"minimum-stability": "stable",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Kallef Alexandre",
10+
"email": "kallef@orbitaldev.com.br"
11+
}
12+
],
13+
"require": {
14+
"php": ">= 7.1",
15+
"guzzlehttp/guzzle": "^6.3",
16+
"nesbot/carbon": "^1.36",
17+
"illuminate/support": "^5.7"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Mitryusweb\\": "src/"
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)