composer.json 592 Bytes
Newer Older
Juliper committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
{
    "name": "nexmo/laravel",
    "description": "Laravel Package for Nexmo's PHP Client",
    "license": "MIT",
    "type": "library",
    "authors": [
        {
            "name": "Tim Lytle",
            "email": "tim@nexmo.com",
            "role": "Developer",
            "homepage": "http://twitter.com/tjlytle"
        }
    ],
    "support": {
        "email": "devrel@nexmo.com"
    },
    "require": {
        "illuminate/support": "^5.2",
        "nexmo/client": "1.0.0-beta3"
    },
    "autoload": {
        "psr-4": {
            "Nexmo\\Laravel\\": "src/"
        }
    }
}