-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation & usage instructions #1
Comments
Hi @carlossg00. Thanks for reporting this. I'll take a look into this issue this evening or tomorrow night. |
There is a limitation within composer that prevents it from loading repositories recursively. To workaround it please add this snippet to your composer.json: "repositories": [
{
"type": "package",
"package": {
"name": "nusphere/nusoap",
"version": "0.9.5",
"dist": {
"url": "http://downloads.sourceforge.net/project/nusoap/nusoap/0.9.5/nusoap-0.9.5.zip",
"type": "zip"
},
"autoload": {
"classmap": ["lib/"]
}
}
}
], Thanks! |
hi, I'm new in soap. I tried to install nusoap as here said, but I got "Failed to clone https://github.com/noiselabs/NoiselabsNuSOAPBundle.git, git was not found, check that it is installed and in your PATH env." |
Hi @Aida-k. You don't have the git command installed. You have two choices: 1. Install Git and retry the clone # Ubuntu:
$ apt-get install git
# Gentoo:
$ emerge --ask --verbose dev-vcs/git For other distros check this: http://git-scm.com/download/linux Then clone the repo: $ git clone https://github.com/noiselabs/NoiselabsNuSOAPBundle.git 2. Download a zip package via GitHub $ wget https://github.com/noiselabs/NoiselabsNuSOAPBundle/archive/master.zip
$ unzip master.zip |
Hi all, can you retest with 0.2.0 or latest dev-master please? Thanks. |
Hi,
Could you please write some brief instructions about how install and use it?
adding
in composer does not work for me.
Thanks and great work!!
The text was updated successfully, but these errors were encountered: