Skip to content

Commit

Permalink
rebilly client initial
Browse files Browse the repository at this point in the history
  • Loading branch information
davert committed Jan 12, 2014
1 parent 59497fa commit 4817791
Show file tree
Hide file tree
Showing 42 changed files with 3,902 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

vendor/
tests/_log/
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/rebilly-php.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/scopes/scope_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

527 changes: 527 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
paths:
tests: tests
log: tests/_log
data: tests/_data
helpers: tests/_helpers
settings:
bootstrap: _bootstrap.php
suite_class: \PHPUnit_Framework_TestSuite
colors: true
memory_limit: 1024M
log: false

30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "rebilly/client-php",
"description": "Rebilly PHP Client",
"keywords": [
"payment processing",
"api",
"transactions",
"subscriptions"
],
"homepage": "http://rebilly.com/",
"license": "MIT",
"authors": [
{
"name": "Rebilly",
"homepage": "https://github.com/rebilly"
}
],
"require": {
"php": ">=5.2",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"classmap": ["lib/","lib/util"]
},
"require-dev": {
"codeception/codeception": "*",
"codeception/verify": "*"
}
}
Loading

0 comments on commit 4817791

Please sign in to comment.