php-to-zephir
php-to-zephir copied to clipboard
Convert PHP 7 files to Zephir zep files and create a native PHP extension
Hello, I wonder if this this project is alive/stable?
Hello. When you try to install your utility on ubuntu 18.04 composer reports "Could not find a version of package sandrokeil/php-to-zephir matching your minimum-stability (stable). Require it with an explicit...
Syntax
php ``` function foo(?array $t) { } ``` converted zephir ``` function foo(?array t) { } ``` right syntax ``` function foo(array! t) { } ```