I am trying to integrate the getId3 Library in my symfony project.So i followed the instructions here https://github.com/phansys/GetId3 about the integration of this library using composer but it fails.
here is a look at my somposer.json file
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.2.*" ,
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.1.*",
"symfony/swiftmailer-bundle": "2.2.*",
"symfony/monolog-bundle": "2.2.*",
"sensio/distribution-bundle": "2.2.*",
"sensio/framework-extra-bundle": "2.2.*",
"sensio/generator-bundle": "2.2.*",
"jms/security-extra-bundle": "1.4.*",
"jms/di-extra-bundle": "1.3.*",
"friendsofsymfony/facebook-bundle": "dev-master",
"friendsofsymfony/user-bundle": "*",
"imagine/imagine": "dev-master",
"phansys/getid3": "2.1.*@dev"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"branch-alias": {
"dev-master": "2.2-dev"
}
this the error message:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for symfony/framework-standard-edition 2.2.x-dev ->
satisfiable by symfony/framework-standard-edition[2.2.x-dev].
- symfony/framework-standard-edition 2.2.x-dev requires phansys/getid3 dev-master
-> no matching package found.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your
minimum- stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for
more details.
Also when i run ./composer search getId3 i do find thz name of the package i am trying to integrate so this is not a typo fault. I am really stuck now and i would be thankfull if somebody can help i really need to use getId lib in my project.
What about this
composer.json
: