Maks3w / xmldsig

PHP Implementation of XML Digital Signature recomendation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

potential hiccup in composer.json dependencies

jimmydburr opened this issue · comments

Just fyi,

It may be just me, but I can't get composer to install your package and it's dependencies. Specifically, it stalls on the xmlsec libraries. See the below cut and paste of my command line errors followed by my composer.json.

Thanks,

Jim...

$ composer install
Loading composer repositories with package information
Installing dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

Problem 1
- Installation request for fr3d/xmldsig dev-master -> satisfiable by fr3d/xmldsig[dev-master].
- fr3d/xmldsig dev-master requires cdatazone/xmlseclibs * -> no matching package found.

Potential causes:

Read http://getcomposer.org/doc/articles/troubleshooting.md for further common problems.

jburrell@JBURRELL-PC ~/Documents/Projects/dsig/dsignit
$ cat composer.json
{
"require": {
"fr3d/xmldsig": "dev-master"
}
}

you can add the official source like this https://github.com/Maks3w/xmldsig/blob/master/composer.json#L25

or you can add this package to your composer https://github.com/Maks3w/xmlseclibs

Yeah, I went the second route in order to get up and running. The "official source" wouldn't work for me, at least not on that day, and continually failed with the error message in the original issue. Haven't tried it since.

Thanks.

v1.1.0 has been released using the official git port of xmlseclibs

OK, thanks for the heads-up. I'll give it a whirl.