We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a7490c commit 68bcb29Copy full SHA for 68bcb29
README.md
@@ -3,10 +3,33 @@
3
4
# Instalación
5
6
+## Extracción de código
7
```bash
- $ git clone https://github.com/sipay/php-sdk
8
+ $ git clone https://github.com/sipay/php-sdk.git
9
```
10
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
33
34
# Quickstart
35
0 commit comments