Download the PHP package widuu/sendcloud without Composer

On this page you can find all versions of the php package widuu/sendcloud. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package sendcloud

SendCloud PHP SDK

sendcloud

安装

composer require widuu/sendcloud:@dev

使用方法

获取用户信息( 在examples 文件夹中)

//自己的API_User和API_KEY

define('API_USER','ttchina_ses');

define('API_KEY','7Ag7e2JzMp36E9pq');

require 'vendor/autoload.php';

// 获取用户信息
$userinfo = Sendcloud\User::get_userinfo();
print_r($userinfo);

// 获取API User 
// 参数为空默认为1  0(触发), 1(批量)
$api_user = Sendcloud\User::get_apiuser();
print_r($api_user);

// 域名查询
// 0 测试域名 1 正常域名

$domain = Sendcloud\User::get_domain();
print_r($domain);

如果你使用的ThinkPHP,你可以直接将,Sendcloud文件夹放到Thinkphp\Library下使用。

TODO

  1. 因为开发时间特别紧就3个小时,所以BUG会不少,需要修复BUG。
  2. 完善examples中的使用方法,都针对各个类库使用。
  3. 优化代码,还是开发速度时间太紧造成大量的代码堆积状况出现,所以需要优化。
  4. 完善整个SDK

Contributing

  1. 登录 https://coding.nethttps://github.com
  2. 创建您的特性分支 (git checkout -b my-new-feature)
  3. 提交您的改动 (git commit -am 'Added some feature')
  4. 将您的改动记录提交到远程 git 仓库 (git push origin my-new-feature)
  5. 然后到 coding 网站的该 git 远程仓库的 my-new-feature 分支下发起 Pull Request

其他信息

blog地址:http://www.widuu.com

新浪微博:http://weibo.com/widuu


All versions of sendcloud with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package widuu/sendcloud contains the following files

Loading the files please wait ....