pkgx
pkgx copied to clipboard
Support for PHP composer.json
Currently, the project supports the javascript package.json, it would be highly beneficial to extend this functionality to include support for PHP composer.json https://getcomposer.org. Composer file contains PHP version and also extensions that can be installed via e.g. pecl.
If you dump an example here I'll whip it up today
Sure @mxcl here is en example composer.json:
{
"license": "proprietary",
"type": "project",
"require": {
"php": "^8.2",
"ext-rdkafka": "*",
"ext-mongodb": "^1.5",
"ext-amqp": "^1.9.3|^2.0.0"
}
}
@mxcl any update on this?