Skip to content

Commit fd2dde7

Browse files
authored
Merge pull request #15 from ionutcalara/master
Total rewrite
2 parents 0058f68 + 2504828 commit fd2dde7

35 files changed

Lines changed: 1349 additions & 1420 deletions

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,62 @@
11
# Created by .ignore support plugin (hsz.mobi)
2+
### macOS template
3+
*.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Icon must end with two \r
8+
Icon
9+
10+
11+
# Thumbnails
12+
._*
13+
14+
# Files that might appear in the root of a volume
15+
.DocumentRevisions-V100
16+
.fseventsd
17+
.Spotlight-V100
18+
.TemporaryItems
19+
.Trashes
20+
.VolumeIcon.icns
21+
.com.apple.timemachine.donotpresent
22+
23+
# Directories potentially created on remote AFP share
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk
29+
### Composer template
30+
composer.phar
31+
/vendor/
32+
33+
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
34+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
35+
composer.lock
36+
### Windows template
37+
# Windows thumbnail cache files
38+
Thumbs.db
39+
ehthumbs.db
40+
ehthumbs_vista.db
41+
42+
# Folder config file
43+
Desktop.ini
44+
45+
# Recycle Bin used on file shares
46+
$RECYCLE.BIN/
47+
48+
# Windows Installer files
49+
*.cab
50+
*.msi
51+
*.msm
52+
*.msp
53+
54+
# Windows shortcuts
55+
*.lnk
256
### JetBrains template
3-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
4-
5-
*.iml
6-
7-
## Directory-based project format:
857
.idea/
9-
# if you remove the above rule, at least ignore the following:
10-
11-
# User-specific stuff:
12-
# .idea/workspace.xml
13-
# .idea/tasks.xml
14-
# .idea/dictionaries
15-
16-
# Sensitive or high-churn files:
17-
# .idea/dataSources.ids
18-
# .idea/dataSources.xml
19-
# .idea/sqlDataSources.xml
20-
# .idea/dynamic.xml
21-
# .idea/uiDesigner.xml
22-
23-
# Gradle:
24-
# .idea/gradle.xml
25-
# .idea/libraries
26-
27-
# Mongo Explorer plugin:
28-
# .idea/mongoSettings.xml
2958

3059
## File-based project format:
31-
*.ipr
3260
*.iws
3361

3462
## Plugin-specific files:
@@ -46,33 +74,5 @@ atlassian-ide-plugin.xml
4674
com_crashlytics_export_strings.xml
4775
crashlytics.properties
4876
crashlytics-build.properties
49-
50-
51-
### Node template
52-
# Logs
53-
logs
54-
*.log
55-
56-
# Runtime data
57-
pids
58-
*.pid
59-
*.seed
60-
61-
# Directory for instrumented libs generated by jscoverage/JSCover
62-
lib-cov
63-
64-
# Coverage directory used by tools like istanbul
65-
coverage
66-
67-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
68-
.grunt
69-
70-
# node-waf configuration
71-
.lock-wscript
72-
73-
# Compiled binary addons (http://nodejs.org/api/addons.html)
74-
build/Release
75-
76-
# Dependency directory
77-
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
78-
node_modules
77+
fabric.properties
78+
.env

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Ionut Calara
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Paylike/Adapter.php

Lines changed: 0 additions & 91 deletions
This file was deleted.

Paylike/Card.php

Lines changed: 0 additions & 31 deletions
This file was deleted.

Paylike/Client.php

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)