Merge branch 'zjl_adjust_20181026' into development
Showing
with
2790 additions
and
1566 deletions
| ... | ... | @@ -10,7 +10,8 @@ |
| "justinrainbow/json-schema": "~1.3", | ||
| "maatwebsite/excel": "~2.0.0", | ||
| "guzzlehttp/guzzle": "^6.3", | ||
| "predis/predis": "^1.1" | ||
| "predis/predis": "^1.1", | ||
| "redgo/monitor-ding": "0.2" | ||
| }, | ||
| "require-dev": { | ||
| "fzaninotto/faker": "~1.4", | ||
| ... | ... |
config/monitorDing.php
0 → 100644
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
| ... | ... | @@ -14,10 +14,10 @@ |
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=5.5.9", | ||
| "ext-fileinfo": "*" | ||
| "php": ">=5.5.9" | ||
| }, | ||
| "require-dev": { | ||
| "ext-fileinfo": "*", | ||
| "phpspec/phpspec": "^3.4", | ||
| "phpunit/phpunit": "^5.7.10" | ||
| }, | ||
| ... | ... |
vendor/monolog/monolog/src/Monolog/Utils.php
0 → 100644
| ... | ... | @@ -25,9 +25,12 @@ |
| "symfony/translation": "~2.6 || ~3.0 || ~4.0" | ||
| }, | ||
| "require-dev": { | ||
| "friendsofphp/php-cs-fixer": "~2", | ||
| "phpunit/phpunit": "^4.8.35 || ^5.7" | ||
| }, | ||
| "suggest": { | ||
| "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.", | ||
| "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors." | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "": "src/" | ||
| ... | ... |
vendor/redgo/monitor-ding/.gitignore
0 → 100644
vendor/redgo/monitor-ding/README.md
0 → 100644
vendor/redgo/monitor-ding/composer.json
0 → 100644
| { | ||
| "name": "redgo/monitor-ding", | ||
| "license": "MIT", | ||
| "description": "用于给钉钉自定义机器人发送消息", | ||
| "type": "library", | ||
| "authors": [ | ||
| { | ||
| "name": "redgo", | ||
| "email": "1223858310@qq.com" | ||
| } | ||
| ], | ||
| "require": { | ||
| "laravel/framework": "^5.1" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Redgo\\MonitorDing\\": "src/" | ||
| } | ||
| }, | ||
| "minimum-stability": "dev", | ||
| "prefer-stable": true | ||
| } |
vendor/redgo/monitor-ding/src/config.php
0 → 100644
Please
register
or
sign in
to comment