初始化项目
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "meibuyu/dingtalk", | ||
| "description": "EasyDingTalk, Alibaba Dingtalk SDK for PHP", | ||
| "keywords": [ | ||
| "dingtalk", | ||
| "dingding", | ||
| "easydingtalk", | ||
| "sdk", | ||
| "钉钉" | ||
| ], | ||
| "license": "MIT", | ||
| "authors": [ | ||
| { | ||
| "name": "张铭阳", | ||
| "email": "mingyoungcheung@gmail.com" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=7.0", | ||
| "overtrue/http": "^1.1.2", | ||
| "pimple/pimple": "^3.0", | ||
| "psr/simple-cache": "^1.0", | ||
| "monolog/monolog": "^1.23 || ^2.0", | ||
| "symfony/cache": "^3.3 || ^4.0 || ^5.0", | ||
| "symfony/http-foundation": "^3.2 || ^4.0 || ^5.0" | ||
| }, | ||
| "require-dev": { | ||
| "mockery/mockery": "^1.0", | ||
| "phpunit/phpunit": "^6.5 || ^7.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "EasyDingTalk\\": "src/" | ||
| }, | ||
| "files": [ | ||
| "src/helpers.php" | ||
| ] | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "EasyDingTalk\\Tests\\": "tests/" | ||
| } | ||
| } | ||
| } |
phpunit.xml
0 → 100644
src/Application.php
0 → 100644
src/Attendance/Client.php
0 → 100644
src/Auth/OAuthClient.php
0 → 100644
src/Auth/ServiceProvider.php
0 → 100644
src/Auth/SsoClient.php
0 → 100644
src/Blackboard/Client.php
0 → 100644
src/Calendar/Client.php
0 → 100644
src/Callback/Client.php
0 → 100644
src/Chat/Client.php
0 → 100644
src/Chat/ServiceProvider.php
0 → 100644
src/Checkin/Client.php
0 → 100644
src/Contact/Client.php
0 → 100644
src/Conversation/Client.php
0 → 100644
src/Department/Client.php
0 → 100644
src/H5app/Client.php
0 → 100644
src/Health/Client.php
0 → 100644
src/Kernel/AccessToken.php
0 → 100644
src/Kernel/BaseClient.php
0 → 100644
src/Kernel/Http/Client.php
0 → 100644
src/Kernel/Server.php
0 → 100644
src/Media/Client.php
0 → 100644
src/Messages/File.php
0 → 100644
src/Messages/Image.php
0 → 100644
src/Messages/Link.php
0 → 100644
src/Messages/Message.php
0 → 100644
src/Messages/Text.php
0 → 100644
src/Messages/Voice.php
0 → 100644
src/Microapp/Client.php
0 → 100644
src/Process/Client.php
0 → 100644
src/Report/Client.php
0 → 100644
src/Robot.php
0 → 100644
src/Role/Client.php
0 → 100644
src/Role/ServiceProvider.php
0 → 100644
src/Schedule/Client.php
0 → 100644
src/User/Client.php
0 → 100644
src/User/ServiceProvider.php
0 → 100644
src/helpers.php
0 → 100644
tests/ApplicationTest.php
0 → 100644
tests/Chat/ClientTest.php
0 → 100644
tests/Contact/ClientTest.php
0 → 100644
tests/Health/ClientTest.php
0 → 100644
tests/Media/ClientTest.php
0 → 100644
tests/Messages/FileTest.php
0 → 100644
tests/Messages/ImageTest.php
0 → 100644
tests/Messages/LinkTest.php
0 → 100644
tests/Messages/TextTest.php
0 → 100644
tests/Messages/VoiceTest.php
0 → 100644
tests/Report/ClientTest.php
0 → 100644
tests/Role/ClientTest.php
0 → 100644
tests/TestCase.php
0 → 100644
tests/TestResponse.php
0 → 100644
tests/User/ClientTest.php
0 → 100644
Please register or sign in to comment