Skip to content

Commit 7fbf10e

Browse files
author
Hafiizh Ghulam
committed
V1
0 parents  commit 7fbf10e

16 files changed

+8719
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/node_modules
2+
/public/build
3+
/public/hot
4+
/public/storage
5+
/storage/*.key
6+
/vendor
7+
.env
8+
.env.backup
9+
.phpunit.result.cache
10+
Homestead.json
11+
Homestead.yaml
12+
npm-debug.log
13+
yarn-error.log
14+
/.idea
15+
/.vscode

composer.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "crenata/affiliate-connector",
3+
"description": "A Connector between two Laravel Framework",
4+
"type": "library",
5+
"require": {
6+
"kornrunner/ethereum-address": "^0.3.0"
7+
},
8+
"require-dev": {
9+
"orchestra/testbench": "^7.6"
10+
},
11+
"license": "MIT",
12+
"autoload": {
13+
"psr-4": {
14+
"Crenata\\AffiliateConnector\\": "src/"
15+
}
16+
},
17+
"authors": [
18+
{
19+
"name": "Hafiizh Ghulam",
20+
"email": "hafiizh.ghulam@frisidea.com"
21+
}
22+
],
23+
"extra": {
24+
"laravel": {
25+
"providers": [
26+
"Crenata\\AffiliateConnector\\Providers\\ConnectorServiceProvider"
27+
]
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)