From 4d2e0024a4ccff815dce711c57dd1365b4c1179e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 20 Oct 2018 07:46:37 +0200 Subject: v0.11.1 --- composer.json | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index d586cf4..cb4f925 100644 --- a/composer.json +++ b/composer.json @@ -7,43 +7,57 @@ "phalcon", "internals" ], - "homepage": "https://zephir-lang.com/", + "homepage": "https://zephir-lang.com", "license": "MIT", "authors": [ { "name": "Zephir Team", "email": "team@zephir-lang.com", - "homepage": "https://zephir-lang.com/" + "homepage": "https://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": "https://docs.zephir-lang.com/" - }, "require": { "php": ">=5.5", - "ext-json": "*", - "ext-hash": "*", "ext-ctype": "*", - "ext-xml": "*" + "ext-hash": "*", + "ext-json": "*", + "ext-xml": "*", + "ext-mbstring": "*" }, "require-dev": { "ext-gmp": "*", "ext-pdo": "*", "ext-pdo_sqlite": "*", - "squizlabs/php_codesniffer": "^3.2", - "phpunit/phpunit": "^4.8" + "phpunit/phpunit": "^4.8 || ^5.7", + "squizlabs/php_codesniffer": "^3.2" }, "autoload": { "psr-4": { "Zephir\\": "Library" } }, - "bin": ["bin/zephir"] + "autoload-dev": { + "psr-4": { + "Zephir\\Stubs\\": "unit-tests/Zephir/Stubs/", + "Zephir\\Test\\": "unit-tests/Zephir/Test/", + "Zephir\\Support\\": "unit-tests/Zephir/Support/", + "Extension\\": "unit-tests/Extension/" + }, + "classmap": [ + "unit-tests/Data/" + ] + }, + "bin": [ + "bin/zephir" + ], + "support": { + "issues": "https://github.com/phalcon/zephir/issues?state=open", + "forum": "https://forum.zephir-lang.com", + "source": "https://github.com/phalcon/zephir", + "docs": "https://docs.zephir-lang.com" + } } -- cgit