This repository was archived by the owner on Aug 7, 2023. It is now read-only.
This repository was archived by the owner on Aug 7, 2023. It is now read-only.
pear vs. composer #37
Open
Description
I think global install is nice and it can also be done with composer, but supporting a local install via composer would also be nice. We frequently pin phpmd to specific versions for a project.
It seems like you would have to probe for a local composer.phar
or global (through $PATH
) and then run the following:
$ ./composer.phar config bin-dir
vendor/bin
Now the path to a local phpmd
would be vendor/bin/phpmd
.
Generally, any thoughts on supporting this? I have never written an atom-plugin, but I suppose I'd give it a shot and try to make a PR for this. Let me know!