proclame/monday-api-laravel 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

proclame/monday-api-laravel

最新稳定版本:v0.4.1

Composer 安装命令:

composer require proclame/monday-api-laravel

包简介

Laravel wrapper around the monday-api package from tblack-it

README 文档

README

This Laravel package is a wrapper for tblack-it/monday-api.

Because of some changes in Monday's API, it is currently relying on a fork with latest updates. When these get pulled in, will revert to using tblack-it's package.

Licencing

Please note, the tblack-it/monday-api package is now GPLv3 Licensed, and so any modifications to that part should be open sourced as well.

This wrapper remains MIT licensed, meaning you can use/transform the code in any way you want.

Install

Via Composer

$ composer require proclame/monday-api-laravel

This package uses autodiscovery, so you don't have to manually add anything to your config/app.php.

In case you do not use autodiscovery:

Add the ServiceProvider and the Facade to your config/app.php:

'providers' => [
  ...
  Proclame\Monday\MondayServiceProvider::class,
],
'aliases' => [
  ...
  'Monday' => Proclame\Monday\MondayFacade::class,
]

OPTIONAL Then run the following command to publish the config to your config/ directory. It should be enough to add MONDAY_TOKEN=MYTOKEN to your .env file.

$ php artisan vendor:publish --tag=config
return [
    'monday_token' => 'MYTOKEN', // the token for your tenant on monday.com
];

Usage

$all_boards = Monday::getBoards();

For more usage information, see tblack-it/monday-api

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 30.08k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 2
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-10-12