Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Gnatyo committed Aug 18, 2017
0 parents commit 597c088
Show file tree
Hide file tree
Showing 15 changed files with 1,744 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/.idea/
/tests/
/var/
/vendor/

phpunit.xml
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: php

php:
- 7.0
- 7.1
- nightly

install:
- composer self-update
- composer install

script:
- vendor/bin/phpunit --coverage-clover=coverage.xml

after_success:
# Coverage reporting
- bash <(curl -s https://codecov.io/bash)

cache:
directories:
- $HOME/.composer/cache
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.1.0] - 2017-08-18
### Added
- Filrebase decoder
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Library-Agnostic Adapters and Utils for JSON Web Token

## Install
```bash
composer install
```
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "free-elephants/jwt",
"type": "project",
"require": {
"firebase/php-jwt": "^5.0"
},
"authors": [
{
"name": "samizdam",
"email": "samizdam@inbox.ru"
}
],
"autoload": {
"psr-4": {
"FreeElephants\\Jwt\\": "src/FreeElephants/Jwt/"
}
},
"autoload-dev": {
"psr-4": {
"FreeElephants\\Jwt\\": "tests/FreeElephants/Jwt/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.3"
}
}
Loading

0 comments on commit 597c088

Please sign in to comment.