Skip to content

Commit 68bcb29

Browse files
[HSDK-7] documentation
1 parent 9a7490c commit 68bcb29

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,33 @@
33

44
# Instalación
55

6+
## Extracción de código
67
```bash
7-
$ git clone https://github.com/sipay/php-sdk
8+
$ git clone https://github.com/sipay/php-sdk.git
89
```
910

11+
## Composer
12+
Crear archivo composer.json o añadir estos parametros:
13+
```json
14+
{
15+
"repositories": [
16+
{
17+
"type": "vcs",
18+
"url": "https://github.com/sipay/php-sdk.git",
19+
}
20+
],
21+
"require": {
22+
"sipay/php-sdk": "*"
23+
}
24+
}
25+
```
26+
y realizar los siguientes pasos
27+
28+
```bash
29+
$ php -r "readfile('https://getcomposer.org/installer');" | php
30+
$ php composer.phar install
31+
```
32+
1033

1134
# Quickstart
1235

0 commit comments

Comments
 (0)