Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/12/2015, 03:27
oskar_calvo
 
Fecha de Ingreso: agosto-2006
Mensajes: 219
Antigüedad: 17 años, 9 meses
Puntos: 0
[Composer] aclarar como instalar una librería en un proyecto

Buenos días,

Estoy empezando un proyecto y quiero agregar la librería https://github.com/adoy/PHP-OAuth2 a composer, pero composer me esta diciendo todo el rato:

Cita:
Problem 1
- The requested package adoy/oauth2 could not be found in any version, there may be a typo in the package name.
Problem 2
- The requested package adoy/oauth2 could not be found in any version, there may be a typo in the package name.
Este es el código que genera composer:

Código:
{
    "name": "adoy/oauth2",
    "description": "Light PHP wrapper for the OAuth 2.0 protocol (based on OAuth 2.0 Authorization Protocol draft-ietf-oauth-v2-15)",
    "require": {
        "adoy/oauth2": "1.3.0",
        "php": ">=5.3.0"
    },
    "license": "LGPL-2.1",
    "authors": [
        {
            "name": "Charron Pierrick",
            "email": "[email protected]"
        }
    ]
}

Alguna sugerencia.

Gracias.

Oskar