diff options
author | Anant Narayanan <anant@kix.in> | 2012-12-31 16:07:33 -0800 |
---|---|---|
committer | Anant Narayanan <anant@kix.in> | 2012-12-31 16:07:33 -0800 |
commit | 24b07575613a1bea9615693d6dfa4636679c2b8f (patch) | |
tree | 4b101b1a997729e6287e67c133c3b1ead4d9cd8c | |
parent | 872d372ca79bc44ef358af2b8c13c3256c71e420 (diff) | |
download | php-jwt-24b07575613a1bea9615693d6dfa4636679c2b8f.zip php-jwt-24b07575613a1bea9615693d6dfa4636679c2b8f.tar.gz php-jwt-24b07575613a1bea9615693d6dfa4636679c2b8f.tar.bz2 |
Update package file for PEAR submission
-rw-r--r-- | JWT.php | 2 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | package.xml | 44 |
3 files changed, 24 insertions, 28 deletions
@@ -5,7 +5,7 @@ * http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-06 * * @author Neuman Vong <neuman@twilio.com> - * @author Anant Narayanan <anant@kix.in> + * @author Anant Narayanan <anant@php.net> */ class JWT { diff --git a/Makefile b/Makefile deleted file mode 100644 index be761d5..0000000 --- a/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: test -test: - @echo running tests - @phpunit --configuration tests/phpunit.xml - -.PHONY: all test diff --git a/package.xml b/package.xml index 03eec95..02b5c18 100644 --- a/package.xml +++ b/package.xml @@ -6,37 +6,39 @@ <name>JWT</name> <channel>pear.php.net</channel> <summary>A JWT encoder/decoder.</summary> - <description>A JWT encoder/decoder.</description> + <description>A JWT encoder/decoder library for PHP.</description> <lead> <name>Neuman Vong</name> <user>lcfrs</user> <email>neuman+pear@twilio.com</email> <active>yes</active> </lead> - <date>2011-03-25</date> - <time>16:47:26</time> + <lead> + <name>Anant Narayanan</name> + <user>anant</usr> + <email>anant@php.net</email> + <active>yes</active> + </lead> + <date>2012-12-31</date> <version> - <release>0.0.0</release> - <api>0.0.0</api> + <release>0.1.0</release> + <api>0.1.0</api> </version> <stability> - <release>alpha</release> - <api>alpha</api> + <release>beta</release> + <api>beta</api> </stability> - <license uri="http://creativecommons.org/licenses/MIT/">MIT License</license> + <license uri="http://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause License</license> <notes> -No release notes. +Initial release with basic support for JWT encoding, decoding and signature verification. </notes> <contents> <dir baseinstalldir="/" name="/"> <dir name="tests"> - <file name="Bootstrap.php" role="test" /> <file name="JWTTest.php" role="test" /> - <file name="phpunit.xml" role="test" /> - </dir> <!-- //tests --> + </dir> <file name="JWT.php" role="php" /> - <file name="Makefile" role="data" /> - </dir> <!-- / --> + </dir> </contents> <dependencies> <required> @@ -58,17 +60,17 @@ No release notes. <changelog> <release> <version> - <release>0.0.0</release> - <api>0.0.0</api> + <release>0.1.0</release> + <api>0.1.0</api> </version> <stability> - <release>alpha</release> - <api>alpha</api> + <release>beta</release> + <api>beta</api> </stability> - <date>2011-03-25</date> - <license uri="http://creativecommons.org/licenses/MIT/">MIT License</license> + <date>2012-12-31</date> + <license uri="http://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause License</license> <notes> -No release notes. +Initial release with basic support for JWT encoding, decoding and signature verification. </notes> </release> </changelog> |