Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zibios/wrike-bundle
Symfony Bundle for Wrike PHP Library API V3 & V4
https://github.com/zibios/wrike-bundle
api-client bundle php psr psr-7 rest symfony-bundle wrike wrike-php-library wrike-php-sdk
Last synced: 9 days ago
JSON representation
Symfony Bundle for Wrike PHP Library API V3 & V4
- Host: GitHub
- URL: https://github.com/zibios/wrike-bundle
- Owner: zibios
- License: mit
- Archived: true
- Created: 2017-02-15T16:52:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-20T20:08:55.000Z (over 6 years ago)
- Last Synced: 2024-09-26T04:32:33.589Z (4 months ago)
- Topics: api-client, bundle, php, psr, psr-7, rest, symfony-bundle, wrike, wrike-php-library, wrike-php-sdk
- Language: PHP
- Homepage:
- Size: 40 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Wrike Bundle - Wrike API V3 & V4
=================================Introduction
------------**This is Symfony Bundle for [Wrike PHP Library](https://github.com/zibios/wrike-php-library).**
* For general purpose please check [full configured Wrike PHP SDK](https://github.com/zibios/wrike-php-sdk).
* For none standard purposes please check [generic Wrike PHP Library](https://github.com/zibios/wrike-php-library).Versions
--------
| Major Version | Wrike API | PHP Compatibility | Symfony Compatibility | Initial release | Support |
|:-------------:|:---------:|:----------------------------------:|:-----------------------:|:---------------:|:------------------------------:|
| V2 | V4 | PHP 7.1, PHP 7.2, TBD | Symfony3, Symfony4, TBD | October, 2018 | TBD |
| V1 | V3 | PHP 5.5, PHP 5.6, PHP 7.0, PHP 7.1 | Symfony2, Symfony3 | February, 2018 | Support ends on February, 2019 |Project status
--------------**General**
[![Packagist License](https://img.shields.io/packagist/l/zibios/wrike-bundle.svg)](https://packagist.org/packages/zibios/wrike-bundle)
[![Packagist Downloads](https://img.shields.io/packagist/dt/zibios/wrike-bundle.svg)](https://packagist.org/packages/zibios/wrike-bundle)
[![Packagist Version](https://img.shields.io/packagist/v/zibios/wrike-bundle.svg)](https://packagist.org/packages/zibios/wrike-bundle)
[![Packagist Version](https://img.shields.io/packagist/php-v/zibios/wrike-bundle.svg)](https://packagist.org/packages/zibios/wrike-bundle)
[![Libraries.io](https://img.shields.io/librariesio/github/zibios/wrike-bundle.svg)](https://libraries.io/packagist/zibios%2Fwrike-bundle)[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1689/badge)](https://bestpractices.coreinfrastructure.org/projects/1689)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/4923a860-32a0-474a-887f-7766d8407b88/mini.png)](https://insight.sensiolabs.com/projects/4923a860-32a0-474a-887f-7766d8407b88)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/bddb2d36ac0943618178a65984252b12)](https://www.codacy.com/app/zibios/wrike-bundle)
[![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/ba535bca76c554597772/maintainability)](https://codeclimate.com/github/zibios/wrike-bundle/maintainability)**Branch 'master'**
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/zibios/wrike-bundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/zibios/wrike-bundle/?branch=master)
[![Scrutinizer Build Status](https://scrutinizer-ci.com/g/zibios/wrike-bundle/badges/build.png?b=master)](https://scrutinizer-ci.com/g/zibios/wrike-bundle/build-status/master)
[![Scrutinizer Code Coverage](https://scrutinizer-ci.com/g/zibios/wrike-bundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/zibios/wrike-bundle/?branch=master)
[![Travis Build Status](https://travis-ci.org/zibios/wrike-bundle.svg?branch=master)](https://travis-ci.org/zibios/wrike-bundle)
[![StyleCI](https://styleci.io/repos/82083702/shield?branch=master)](https://styleci.io/repos/82083702)
[![Coverage Status](https://coveralls.io/repos/github/zibios/wrike-bundle/badge.svg?branch=master)](https://coveralls.io/github/zibios/wrike-bundle?branch=master)Step 1: Download the Bundle
---------------------------Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require zibios/wrike-bundle "^1.0"
```This command requires you to have Composer installed globally, as explained
in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.Step 2: Enable the Bundle
-------------------------Then, enable the bundle by adding it to the list of registered bundles
in the `app/AppKernel.php` file of your project:```php
getContainer()->get('zibios_wrike.api_factory');
// @var Api
$apiWithoutAccessToken = $this->getContainer()->get('zibios_wrike.api');// @var Api
$firstAppWithAccessToken = $this->getContainer()->get('zibios_wrike.app.first');
// @var Api
$secondAppWithAccessToken = $this->getContainer()->get('zibios_wrike.app.second');
```Reference
---------[Wrike PHP Library](https://github.com/zibios/wrike-php-library)
[Wrike PHP SDK](https://github.com/zibios/wrike-php-sdk)
Official [Wrike API Documentation](https://developers.wrike.com/documentation/api/overview)
License
-------This bundle is available under the [MIT license](LICENSE).