Skip to content

Commit a228270

Browse files
committed
Initial commit
0 parents  commit a228270

File tree

9 files changed

+825
-0
lines changed

9 files changed

+825
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.idea/
2+
/vendor/

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "communitybuilders/omnipay-ewaydirecttoken",
3+
"type": "library",
4+
"description": "Eway direct driver extension that adds ability to make create card requests for for the Omnipay payment processing library",
5+
"keywords": [
6+
"quickstream",
7+
"gateway",
8+
"merchant",
9+
"omnipay",
10+
"pay",
11+
"payment",
12+
"purchase"
13+
],
14+
"homepage": "https://github.com/communitybuilders/omnipay-ewaydirecttoken",
15+
"license": "MIT",
16+
"authors": [
17+
{
18+
"name": "Dejan Lukic",
19+
"email": "[email protected]"
20+
}
21+
],
22+
"autoload": {
23+
"psr-0": {
24+
"CommunityBuilders\\Omnipay\\EwayDirectToken": "src/"
25+
}
26+
},
27+
"require": {
28+
"omnipay/eway": "~2.0"
29+
}
30+
}

0 commit comments

Comments
 (0)