summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-30 19:15:07 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-30 19:15:07 +0200
commit8b6e70a12d34db25d68c5ccc7a81450e133094c7 (patch)
tree86bd313084e9bed04fea2c5b268ac2547ff9dd11 /composer.json
zephir-parser: 0.9.3 (new package for phalcon)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json47
1 files changed, 47 insertions, 0 deletions
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"
+ }
+ }
+}