导入会员
Showing
application/admin/controller/VipRelation.php
0 → 100644
application/common/model/VipRelation.php
0 → 100644
| ... | ... | @@ -21,7 +21,8 @@ |
| "qiniu/php-sdk": "^7.1", | ||
| "jiguang/jmessage": "1.0.*", | ||
| "phpoffice/phpexcel": "^1.8", | ||
| "topthink/think-captcha":"1.0.7" | ||
| "topthink/think-captcha":"1.0.7", | ||
| "cocolait/excel": "^2.0" | ||
| }, | ||
| "extra": { | ||
| "think-path": "thinkphp" | ||
| ... | ... |
vendor/cocolait/excel/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/cocolait/excel/README.md
0 → 100644
vendor/cocolait/excel/composer.json
0 → 100644
| { | ||
| "name": "cocolait/excel", | ||
| "description": "PHP excel表格处理", | ||
| "type": "library", | ||
| "homepage": "http://www.mgchen.com/", | ||
| "require": { | ||
| "php": ">=5.3.0", | ||
| "siriusphp/upload": "^2.1", | ||
| "phpoffice/phpexcel": "1.8.*" | ||
| }, | ||
| "license": "Apache-2.0", | ||
| "authors": [ | ||
| { | ||
| "name": "cocolait", | ||
| "email": "enkipen@qq.com" | ||
| } | ||
| ], | ||
| "repositories": { | ||
| "packagist": { | ||
| "type": "composer", | ||
| "url": "https://packagist.phpcomposer.com" | ||
| } | ||
| }, | ||
| "config": { | ||
| "preferred-install": "dist" | ||
| }, | ||
| "minimum-stability": "stable", | ||
| "autoload" : { | ||
| "psr-4" : { | ||
| "cocolait\\extend\\" : "src/" | ||
| } | ||
| } | ||
| } | ||
| \ No newline at end of file |
vendor/cocolait/excel/src/Excel.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/jiguang/jmessage/.gitignore
0 → 100644
vendor/jiguang/jmessage/LICENSE
0 → 100644
vendor/jiguang/jmessage/README.md
0 → 100644
vendor/jiguang/jmessage/autoload.php
0 → 100644
vendor/jiguang/jmessage/composer.json
0 → 100644
| { | ||
| "name": "jiguang/jmessage", | ||
| "type": "library", | ||
| "version": "1.0.4", | ||
| "description": "JMessage's officially supported PHP client library for accessing JMessage APIs.", | ||
| "keywords": ["jiguang", "jmessage", "API Client"], | ||
| "homepage": "https://github.com/jpush/jmessage-api-php-client", | ||
| "license": "MIT", | ||
| "authors": [ | ||
| { | ||
| "name": "JiGuang", | ||
| "email": "support@jpush.cn", | ||
| "homepage": "https://www.jiguang.cn" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=5.4", | ||
| "ext-curl": "*" | ||
| }, | ||
| "autoload" : { | ||
| "psr-4": {"JMessage\\": "src/JMessage/"} | ||
| } | ||
| } |
vendor/jiguang/jmessage/docs/CROSS.md
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/jiguang/jmessage/docs/GUIDE.md
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/jiguang/jmessage/examples/jiguang.png
0 → 100644
20.9 KB
vendor/jiguang/jmessage/src/JMessage/IM.php
0 → 100644
vendor/siriusphp/upload/CHANGELOG.md
0 → 100644
vendor/siriusphp/upload/LICENSE
0 → 100644
vendor/siriusphp/upload/README.md
0 → 100644
vendor/siriusphp/upload/autoload.php
0 → 100644
vendor/siriusphp/upload/composer.json
0 → 100644
| { | ||
| "name": "siriusphp/upload", | ||
| "description": "Framework agnostic upload library", | ||
| "type": "library", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "form", | ||
| "upload", | ||
| "validation", | ||
| "file" | ||
| ], | ||
| "authors": [ | ||
| { | ||
| "name": "Adrian Miu", | ||
| "email": "adrian@adrianmiu.ro" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=5.3", | ||
| "siriusphp/validation": "~2.1" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "~4.8" | ||
| }, | ||
| "suggest": { | ||
| "league/flysystem": "To upload to different destinations, not just to the local file system", | ||
| "knplabs/gaufrette": "Alternative filesystem abstraction library for upload destinations" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Sirius\\Upload\\": "src/" | ||
| } | ||
| } | ||
| } |
vendor/siriusphp/upload/src/Handler.php
0 → 100644
vendor/siriusphp/upload/src/Result/File.php
0 → 100644
vendor/siriusphp/upload/src/Util/Arr.php
0 → 100644
vendor/siriusphp/validation/.editorconfig
0 → 100644
vendor/siriusphp/validation/CHANGELOG.md
0 → 100644
vendor/siriusphp/validation/LICENSE
0 → 100644
vendor/siriusphp/validation/autoload.php
0 → 100644
vendor/siriusphp/validation/composer.json
0 → 100644
| { | ||
| "name": "siriusphp/validation", | ||
| "description": "Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules", | ||
| "type": "library", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "form", | ||
| "validation", | ||
| "sanitization", | ||
| "security", | ||
| "modeling" | ||
| ], | ||
| "authors": [ | ||
| { | ||
| "name": "Adrian Miu", | ||
| "email": "adrian@adrianmiu.ro" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=5.3" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^3.7" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Sirius\\Validation\\": "src/" | ||
| } | ||
| }, | ||
| "scripts": { | ||
| "phpcs": [ | ||
| "php phpcs.phar --standard=PSR2 ./src" | ||
| ], | ||
| "phpmd": [ | ||
| "php phpmd.phar ./src xml phpmd.xml" | ||
| ], | ||
| "phpcbf": [ | ||
| "php phpcbf.phar ./src --standard=PSR2 -w" | ||
| ], | ||
| "phpcsfix": [ | ||
| "php php-cs-fixer.phar fix ./src --rules=@PSR2" | ||
| ] | ||
| } | ||
| } |
vendor/siriusphp/validation/phpmd.xml
0 → 100644
vendor/siriusphp/validation/readme.md
0 → 100644
vendor/siriusphp/validation/src/Helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/siriusphp/validation/src/Rule/Url.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/siriusphp/validation/src/Util/Arr.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment