Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
Made the class available through composer
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsverkoyen committed Dec 24, 2012
1 parent 7d6c484 commit 39a4435
Show file tree
Hide file tree
Showing 5 changed files with 203 additions and 194 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
# Changelog since 1.0.6

* Made it compliant with PSR
* Made the class available through composer

# Changelog since 1.0.5

* Fixed filesPost so it can handle folders with spaces.
Expand Down
4 changes: 2 additions & 2 deletions Dropbox.php
Expand Up @@ -5,7 +5,7 @@
* Dropbox class
*
* @author Tijs Verkoyen <php-dropbox@verkoyen.eu>
* @version 1.0.6
* @version 1.0.7
* @copyright Copyright (c), Tijs Verkoyen. All rights reserved.
* @license BSD License
*/
Expand All @@ -25,7 +25,7 @@ class Dropbox
const API_PORT = 443;

// current version
const VERSION = '1.0.6';
const VERSION = '1.0.7';

/**
* A cURL instance
Expand Down
21 changes: 21 additions & 0 deletions composer.json
@@ -0,0 +1,21 @@
{
"name": "tijsverkoyen/dropbox",
"type": "library",
"description": "Dropbox is a wrapper-class to communicate with the Dropbox API.",
"homepage": "https://github.com/tijsverkoyen/Dropbox",
"license": "BSD",
"authors": [
{
"name": "Tijs Verkoyen",
"email": "php-dropbox@verkoyen.eu",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0",
"ext-curl": "*"
},
"autoload": {
"classmap": [""]
}
}

0 comments on commit 39a4435

Please sign in to comment.