summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 28 insertions, 14 deletions
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"
+ }
}