https://github.com/evernote/evernote-cloud-sdk-php
https://github.com/evernote/evernote-cloud-sdk-php
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/evernote/evernote-cloud-sdk-php
- Owner: Evernote
- License: other
- Created: 2014-09-30T08:30:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T12:43:59.000Z (about 2 years ago)
- Last Synced: 2025-03-28T10:54:22.324Z (7 months ago)
- Language: PHP
- Size: 313 KB
- Stars: 148
- Watchers: 44
- Forks: 61
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Evernote Cloud SDK PHP v2.0.2
=====================================A newly-redesigned, simple, workflow-oriented library built on the Evernote Cloud API. It's designed to drop into your web app easily and make most common Evernote integrations very simple to accomplish. (And even the more complex integrations easier than they used to be.)
Installation
------------The recommended way to install the SDK is through composer.
Just run these two commands to install it:
``` bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar require evernote/evernote-cloud-sdk-php
```Now you can add the autoloader, and you will have access to the library:
``` php