Skip to content

Commit

Permalink
Add cURL to requirements. Closes #31
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilsson committed Apr 14, 2015
1 parent 763df0e commit 989d44c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ This is a PHP implementation of the [Spotify Web API](https://developer.spotify.
* PSR-4 autoloading support.

## Requirements
PHP 5.3 or greater.
* PHP 5.3 or greater.
* PHP [cURL extension](http://php.net/manual/en/book.curl.php) (Usually included with PHP).

## Installation

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
Expand Down

0 comments on commit 989d44c

Please sign in to comment.