Próbuję użyć Pakietu w Pakiecie, ale jakoś to się nie udaje.Jak poprawnie zadeklarować zależność do innej paczki w pakiecie?
"repositories": [
{
"type": "vcs",
"url": "https://github.com/myname/mybundle"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
(...)
"myname/mybundle": "*"
},
wydaje się to zadziałać do tej pory. Ale nie mogę wymyślić, jak zadeklarować kolejną zależność w "myname/mybundle".
Próbowałem następujących w pliku composer.json z MyName/mybundle ale żaden z nich nie pracował :(
"repositories": [
{
"type": "vcs",
"url": "url": "https://github.com/drymek/PheanstalkBundle"
}
],
"require": {
(...)
"drymek/PheanstalkBundle": "dev-master"
}
i
"repositories": [
{
"type": "package",
"package": {
"name": "drymek/PheanstalkBundle",
"version": "dev-master",
"source": {
"url": "https://github.com/drymek/PheanstalkBundle.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
(...)
"drymek/PheanstalkBundle": "dev-master"
}
kiedy rum composer.phar update
wszystko mogę to
- myname/mybundle dev-master requires drymek/pheanstalkbundle dev-master -> no matching package found.
Drugi repozytorium w https: //github.com/digitalpioneers/pheanstalk lub na https://github.com/drymek/PheanstalkBundle? –
whoops sorry drymek/PheanstalkBundle ... poprawiono to teraz;) – Senad