-
-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
3,237 additions
and
649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
.buildpath | ||
.project | ||
.settings/ | ||
vendor | ||
build | ||
phpunit.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
build: | ||
environment: | ||
mysql: false | ||
redis: false | ||
php: | ||
version: 5.6 | ||
tools: | ||
php_sim: true | ||
php_pdepend: true | ||
php_analyzer: true | ||
php_changetracking: true | ||
php_code_sniffer: | ||
config: | ||
standard: "PSR2" | ||
php_mess_detector: true | ||
checks: | ||
php: | ||
argument_type_checks: true | ||
assignment_of_null_return: true | ||
avoid_conflicting_incrementers: true | ||
avoid_useless_overridden_methods: true | ||
catch_class_exists: true | ||
closure_use_modifiable: true | ||
closure_use_not_conflicting: true | ||
code_rating: true | ||
deprecated_code_usage: true | ||
duplication: true | ||
method_calls_on_non_object: true | ||
missing_arguments: true | ||
no_duplicate_arguments: true | ||
no_non_implemented_abstract_methods: true | ||
no_property_on_interface: true | ||
parameter_non_unique: true | ||
precedence_in_conditions: true | ||
precedence_mistakes: true | ||
require_php_tag_first: true | ||
security_vulnerabilities: true | ||
sql_injection_vulnerabilities: true | ||
too_many_arguments: true | ||
unreachable_code: true | ||
unused_methods: true | ||
unused_parameters: true | ||
unused_properties: true | ||
unused_variables: true | ||
use_statement_alias_conflict: true | ||
useless_calls: true | ||
variable_existence: true | ||
verify_access_scope_valid: true | ||
verify_argument_usable_as_reference: true | ||
verify_property_names: true | ||
|
||
filter: | ||
excluded_paths: | ||
- test/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
language: php | ||
php: | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
- hhvm-nightly | ||
|
||
matrix: | ||
allow_failures: | ||
- php: 7.0 | ||
- php: hhvm | ||
- php: hhvm-nightly | ||
|
||
before_script: | ||
- composer selfupdate | ||
- composer install --prefer-dist -o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
{ | ||
"name" : "lcobucci/jwt", | ||
"description" : "A simple library to work with JSON Web Token and JSON Web Signature", | ||
"type" : "library", | ||
"authors" : [ | ||
"name": "lcobucci/jwt", | ||
"description": "A simple library to work with JSON Web Token and JSON Web Signature", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name" : "Luís Otávio Cobucci Obloncz", | ||
"email" : "[email protected]", | ||
"name": "Luís Otávio Cobucci Obloncz", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"keywords" : ["JWT", "JWS"], | ||
"license" : ["BSD-3-Clause"], | ||
"require" : { | ||
"php" : ">=5.5" | ||
"keywords": [ | ||
"JWT", | ||
"JWS" | ||
], | ||
"license": [ | ||
"BSD-3-Clause" | ||
], | ||
"require": { | ||
"php": ">=5.5", | ||
"ext-openssl": "*" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "~4.3", | ||
"squizlabs/php_codesniffer" : "~1.5", | ||
"phpmd/phpmd" : "~2.1" | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.5", | ||
"squizlabs/php_codesniffer": "~2.3", | ||
"phpmd/phpmd": "~2.2", | ||
"phpunit/php-invoker": "~1.1" | ||
}, | ||
"autoload" : { | ||
"psr-4" : { | ||
"Lcobucci\\JWT\\" : ["src", "test"] | ||
"autoload": { | ||
"psr-4": { | ||
"Lcobucci\\JWT\\": [ | ||
"src", | ||
"test" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.