php - Installing Pear PFM on OSX -


i trying create pear package project on github have on local repository, i'm having alot of trouble getting pfm work, here error keep getting when try install:

luciens-macbook-pro:quisbee-rails admin$ pear install pear_packagefilemanager_cli no releases available package "pear.php.net/pear_packagefilemanager_cli" install failed 

i running on php 5.5.15 , pear 1.9.5.

if @ pear config settings you'll see preferred state of packages download "stable"

$ pear config-show | grep preferred_state 

or, more efficient:

$ pear config-get preferred_state 

so download , install package not marked stable, best option include version number when attempt install it:

$ sudo pear install pear_packagefilemanager_cli-0.4.0 

this should work ok - assuming have dependencies installed. if not, easy following including --alldeps option:

$ sudo pear install --alldeps pear_packagefilemanager_cli-0.4.0 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -