summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
1 files changed, 23 insertions, 8 deletions
diff --git a/composer.json b/composer.json
index cb4f925..b8e242a 100644
--- a/composer.json
+++ b/composer.json
@@ -21,38 +21,53 @@
}
],
"require": {
- "php": ">=5.5",
+ "php": ">=5.6.0 <8.0",
+ "ext-SPL": "*",
"ext-ctype": "*",
"ext-hash": "*",
"ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-pcre": "*",
"ext-xml": "*",
- "ext-mbstring": "*"
+ "league/container": "^2.4 || ^3.2",
+ "league/flysystem": "1.0.*",
+ "symfony/console": "3.4.*"
},
"require-dev": {
"ext-gmp": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
- "phpunit/phpunit": "^4.8 || ^5.7",
- "squizlabs/php_codesniffer": "^3.2"
+ "phpunit/phpunit": "~5.7",
+ "squizlabs/php_codesniffer": "~3.2"
+ },
+ "config": {
+ "optimize-autoloader": true,
+ "platform": {},
+ "preferred-install": "dist",
+ "sort-packages": true
},
"autoload": {
"psr-4": {
"Zephir\\": "Library"
- }
+ },
+ "files": [
+ "Library/functions.php"
+ ]
},
"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/"
+ "unit-tests/fixtures/mocks/"
]
},
+ "minimum-stability": "dev",
+ "prefer-stable": true,
"bin": [
- "bin/zephir"
+ "zephir"
],
"support": {
"issues": "https://github.com/phalcon/zephir/issues?state=open",