Skip to content

Commit

Permalink
Get code from labs-json-api and refactor it a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Clearbooks-Tom committed Sep 17, 2015
1 parent 17f4fd7 commit eebbc64
Show file tree
Hide file tree
Showing 11 changed files with 2,204 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
vendor/
41 changes: 41 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "clearbooks/dilex-jwt",
"description": "JWT authentication middleware for Dilex",
"type": "project",
"require": {
"clearbooks/dilex": "^1.0",
"emarref/jwt": "^0.1.1"

},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"license": "LGPL-v3",
"authors": [
{
"name": "Crimson Ducks",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:clearbooks/dilex.git"
},
{
"type": "composer",
"url": "https://carefulcoder.co.uk/composer"
}
],
"autoload": {
"psr-4": {
"Clearbooks\\Dilex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clearbooks\\Dilex\\": "test/"
}
},
"minimum-stability": "dev"
}
Loading

0 comments on commit eebbc64

Please sign in to comment.