italolelis / wunderlist
This package is abandoned and no longer maintained.
No replacement package was suggested.
Unofficial Wunderlist SDK
v1.0.2
2015-04-08 14:25 UTC
Requires
- doctrine/common: ~2.4
- easyframework/collections: ~4.0
- filp/whoops: ~1.1
- guzzlehttp/guzzle: ~5.2
- jms/serializer: ~0.16
- lusitanian/oauth: >=0.2.3
- nesbot/carbon: ~1.17
- symfony/http-foundation: ~2.6
- symfony/property-access: ~2.6
- symfony/yaml: ~2.6
Requires (Dev)
- php: >=5.4.0
- phpunit/phpunit: ~4.5
- symfony/var-dumper: ~2.6
README
Unofficial Wunderlist SDK for PHP. This library works perfectly with Wunderlist v3.
Install
composer require italolelis/wunderlist
Usage
Basic example
The SDK is pretty simple to use, here is an example of how we can access all lists:
<?php use Wunderlist\Entity\WList; use Wunderlist\ClientBuilder; // Instanciate wunderlist API manager $builder = new ClientBuilder(); $wunderlist = $builder->build('yourClientId', 'yourClientSecret', 'http://domain.com/oauth/callback'); //Here we get all lists for the authenticated user $lists = $wunderlist->getService(WList::class)->all(); //For each list on the lists $lists->map(function($list) { echo $list->getTitle(); });
What about all taks for a list?
<?php use Wunderlist\Entity\Task; use Wunderlist\Entity\WList; //Here we get all lists for the authenticated user $lists = $wunderlist->getService(WList::class)->all(); //For each list on the lists $lists->map(function($list) { $tasks = wunderlist->getService(Task::class)->forList($list); $tasks->map(function($task){ echo $task->getTitle(); }); });
Ok, now lets create a task for a list
<?php use Wunderlist\Entity\WList; use Wunderlist\Entity\Task; //Here we get all lists for the authenticated user $lists = $wunderlist->getService(WList::class)->all(); //We get the first list $list = $lists->first(); $task = new Task(); $task->setListID($list->getId()) ->setTitle('Test Hello'); $wunderlist->save($task);
This is just some simple things you can do with the SDK. Whant more? please just read our documentation
Integrations
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
Documentation
More information can be found in the online documentation at http://wunderlist.readthedocs.org/.