Skip to content

Commit 5279d59

Browse files
committed
Add composer files
1 parent 77974b5 commit 5279d59

File tree

3 files changed

+163
-0
lines changed

3 files changed

+163
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
.buildpath
3+
.project
4+
.settings/
5+
vendor/

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name" : "phpmv/ubiquity-oauth",
3+
"description" : "Oauth 2 client for Ubiquity framework",
4+
"type" : "extension",
5+
"keywords" : [
6+
"php",
7+
"framework",
8+
"mvc",
9+
"oauth2",
10+
"tools",
11+
"php-framework"
12+
],
13+
"require": {
14+
"hybridauth/hybridauth": "^3.2",
15+
"phpmv/ubiquity": "^2.3"
16+
},
17+
"license" : "Apache-2.0",
18+
"authors" : [{
19+
"name" : "Jean-Christophe HERON",
20+
"email" : "myaddressmail@gmail.com",
21+
"role" : "Lead developer"
22+
}
23+
],
24+
"autoload" : {
25+
"psr-4" : {
26+
"Ubiquity\\" : "src/Ubiquity/"
27+
}
28+
},
29+
"extra" : {
30+
"branch-alias" : {
31+
"dev-master" : "1.0.x-dev"
32+
}
33+
}
34+
}

composer.lock

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)