From 8b6e70a12d34db25d68c5ccc7a81450e133094c7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 30 Jul 2016 19:15:07 +0200 Subject: zephir-parser: 0.9.3 (new package for phalcon) --- composer.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9818c93 --- /dev/null +++ b/composer.json @@ -0,0 +1,47 @@ +{ + "name": "phalcon/zephir", + "description": "Zephir is a compiled high level language aimed to the creation of C-extensions for PHP", + "keywords": ["extension"], + "homepage": "http://zephir-lang.com/", + "license": "MIT", + "authors": [ + { + "name": "Zephir Team", + "homepage": "http://zephir-lang.com/" + }, + { + "name": "Contributors", + "homepage": "https://github.com/phalcon/zephir/graphs/contributors" + } + ], + "support": { + "issues": "https://github.com/phalcon/zephir/issues?state=open", + "source": "https://github.com/phalcon/zephir", + "forum": "https://forum.zephir-lang.com/", + "docs": "http://docs.zephir-lang.com/" + }, + "require": { + "php": ">=5.4", + "ext-json": "*", + "ext-hash": "*", + "ext-ctype": "*" + }, + "require-dev": { + "squizlabs/php_codesniffer": "~2.6", + "phpunit/phpunit": "3.7.*", + "ext-gmp": "*", + "ext-pdo": "*", + "ext-pdo_sqlite": "*" + }, + "autoload": { + "psr-4": { + "Zephir\\": "Library" + } + }, + "bin": ["bin/zephir"], + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} -- cgit