Skip to content

Instantly share code, notes, and snippets.

@matthijsotterloo
Created March 29, 2015 09:40
Show Gist options
  • Save matthijsotterloo/71c7e230bb3b60e5a1b5 to your computer and use it in GitHub Desktop.
Save matthijsotterloo/71c7e230bb3b60e5a1b5 to your computer and use it in GitHub Desktop.

Revisions

  1. matthijsotterloo created this gist Mar 29, 2015.
    29 changes: 29 additions & 0 deletions composer.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    {
    "name": "jwilsson/spotify-web-api-php",
    "description": "PHP implementation of Spotify's Web API.",
    "type": "library",
    "license": "MIT",
    "keywords": ["spotify"],
    "homepage": "https://github.com/jwilsson/spotify-web-api-php",
    "authors": [
    {
    "name": "Jonathan Wilsson",
    "email": "[email protected]"
    }
    ],
    "require": {
    "php": ">=5.3.3",
    "jwilsson/spotify-web-api-php": "0.8.*"

    },
    "require-dev": {
    "phpunit/phpunit": "4.*",
    "satooshi/php-coveralls": "dev-master",
    "vlucas/phpdotenv": "1.*"
    },
    "autoload": {
    "psr-4": {
    "SpotifyWebAPI\\": "src/"
    }
    }
    }