Composer problem OSX
bluedogmilan opened this issue · 4 comments
Hi Yooper.
I tried to install the library on OSX but i got this error:
`composer require yooper/php-text-analysis
Using version ^1.0 for yooper/php-text-analysis
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for yooper/php-text-analysis ^1.0 -> satisfiable by yooper/php-text-analysis[v1.0].
- yooper/php-text-analysis v1.0 requires yooper/stop-words dev-master -> satisfiable by yooper/stop-words[dev-master] but these conflict with your requirements or minimum-stability.
Installation failed, reverting ./composer.json to its original content.
`
--bd
same result on the dev machine (Debian)
By default, composer will only install stable
packages. yooper/stop-words
appears to only have a dev
package.
Solved by manually adding "minimum-stability": "dev" in /composer.json
Based on the feed back in this ticket, the latest commit now uses stopwords 1.0, instead of dev-master.
Thank you,