From aa1f94712d19e6c90747bacd3cefb4a823d7a617 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 8 Apr 2016 14:13:18 +0200 Subject: php-hoa-json: 2.16.01.14 (new package, wip) --- composer.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ce15597 --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name" : "hoa/json", + "description": "The Hoa\\Json library.", + "type" : "library", + "keywords" : ["library", "json", "grammar"], + "homepage" : "http://hoa-project.net/", + "license" : "BSD-3-Clause", + "authors" : [ + { + "name" : "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name" : "Hoa community", + "homepage": "http://hoa-project.net/" + } + ], + "support": { + "email" : "support@lists.hoa-project.net", + "irc" : "irc://irc.freenode.org/hoaproject", + "source": "http://git.hoa-project.net/" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/protocol" : "~1.0" + }, + "require-dev": { + "hoa/compiler": "~3.0", + "hoa/file" : "~1.0", + "hoa/iterator": "~2.0", + "hoa/math" : "~1.0", + "hoa/regex" : "~1.0", + "hoa/test" : "~2.0" + }, + "autoload": { + "psr-4": { + "Hoa\\Json\\": "." + } + }, + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + } +} -- cgit