Here is the composer.json widget from github

{ "name": "vkolya/pollANDcharts", "description": "An widget to create polls and to wrap google chart for Yii Framework 2", "keywords": ["yii2", "poll", "widget", "poll-widget", "yii2-poll-widget"], "type": "yii2-extension", "minimum-stability": "dev", "license": "BSD-2-Clause", "support": { "source": "https://github.com/Vkolya/pollANDcharts" }, "authors": [ { "name": "Mykola Vantukh", "email": "vkolia@mail.ua" } ], "require": { "yiisoft/yii2": "*" }, "autoload": { "psr-4": { "vkolya\\pollANDcharts\\": "" } } 

}

here is composer.json from the local server

 { "name": "nenad/yii2-advanced-template", "description": "Improved Yii 2 Advanced Application Template By Nenad Zivkovic", "keywords": ["yii2", "framework", "advanced", "improved", "application template", "nenad"], "type": "project", "license": "BSD-3-Clause", "support": { "tutorial": "http://www.freetuts.org/tutorial/view?id=6", "source": "https://github.com/nenad-zivkovic/yii2-advanced-template" }, "minimum-stability": "stable", "require": { "php": ">=5.4.0", "yiisoft/yii2": "*", "yiisoft/yii2-bootstrap": "*", "yiisoft/yii2-swiftmailer": "*", "nenad/yii2-password-strength": "*", "mihaildev/yii2-ckeditor": "*", "codeception/codeception": "2.0.*", "codeception/specify": "*", "cboden/ratchet": "^0.3.5", "react/zmq": "0.2.*|0.3.*", "bower-asset/push.js": "^0.0.11", "nlac/nlsclientscript": "dev-master", "pollext/poll":"dev-master", "scotthuangzl/yii2-google-chart": "dev-master", "vkolya/pollANDcharts":"dev-master" }, "require-dev": { "yiisoft/yii2-codeception": "*", "yiisoft/yii2-debug": "*", "yiisoft/yii2-gii": "*", "yiisoft/yii2-faker": "*", "codeception/verify": "*", "phpdocumentor/phpdocumentor": "2.*", "ext-xsl": "*" }, "config": { "vendor-dir": "_protected/vendor", "process-timeout": 1800 }, "extra": { "asset-installer-paths": { "npm-asset-library": "_protected/vendor/npm", "bower-asset-library": "_protected/vendor/bower" } } 

} It seems that everything is correct, but the composer gives an error

  Your requirements could not be resolved to an installable set of packages. Problem 1 - The requested package vkolya/pollandcharts could not be found in any version, there may be a typo in the package name. 

Please tell me what is wrong

  • try specifying the getcomposer.org/doc/… repository - Naumov

1 answer 1

  1. I do not see your package on packagist.org
  2. I do not see the "repositories" section in your composer.json
  3. ... there are no other options either.

you can read more about the package connection, for example, directly from github here: Satis: Create your own Composer repository

there must be something like:

 { ... "repositories" : [ {"type" : "vcs", "url" : "https://github.com/Vkolya/pollANDcharts"} ], ... } 
  • thank you very much . I knew that there should be a service for storing these packages - Kolya Vantukh