Skip to content

Commit d963a3d

Browse files
committed
Initial
0 parents  commit d963a3d

File tree

9 files changed

+1668
-0
lines changed

9 files changed

+1668
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# laravel-api-auth

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "erjanmx/laravel-api-auth",
3+
"description": "Auth",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "erjanmx",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require-dev": {
13+
"mockery/mockery": "0.9.*",
14+
"phpunit/phpunit": "~5.0"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Apiauth\\Laravel\\": "src"
19+
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Apiauth\\Laravel\\": "tests"
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)