-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setters for Key-classes, fix composer.json, CI-tweaks (#6)
* Add setters for Key-classes, fix composer.json, CI-tweaks - Add setters for KeyInterface and implementing classes - Fix composer.json according to schema for publishing in Packagist - Add check for composer.json validity to Travis config - Add check for php-cs-fixer to Travis config
- Loading branch information
Showing
9 changed files
with
187 additions
and
23 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
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,11 +1,14 @@ | ||
{ | ||
"name": "strobotti/php-jwk", | ||
"description": "A small PHP library to handle JWKs (Json Web Keys)", | ||
"type": "library", | ||
"keywords": ["jwk", "jwks"], | ||
"homepage": "https://github.com/Strobotti/php-jwk", | ||
"authors": [ | ||
{ | ||
"name": "Juha Jantunen", | ||
"email": "[email protected]", | ||
"homepage": "https://www.strobotti.com", | ||
"role": "Developer" | ||
} | ||
], | ||
|
@@ -18,16 +21,22 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Strobotti\\JWK\\": "src" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Strobotti\\JWK\\Tests\\": "tests/" | ||
} | ||
"Strobotti\\JWK\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Strobotti\\JWK\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^8.0", | ||
"friendsofphp/php-cs-fixer": "^2.16" | ||
}, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit" | ||
}, | ||
"scripts-descriptions": { | ||
"test": "Run all tests" | ||
} | ||
} |
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
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