panlogic/donate
Composer 安装命令:
composer require panlogic/donate
包简介
DONATE PHP library helper
README 文档
README
DONATE is a PHP library class to make using the DONATE API easy
Composer
To install DONATE as a Composer package, simply add this to your composer.json:
"panlogic/donate": "dev-master"
..and run composer update. Once it's installed, if you're using Laravel 5, you can register the service provider in app/config/app.php in the providers array add :
'Panlogic\DONATE\DonateServiceProvider',
You can also benefit from using a Facade in Laravel 5 by adding to the alias array also in app.php below the providers array
'Donate' => 'Panlogic\DONATE\DonateFacade',
Documentation
If you're using Laravel, publish the config file by running
php artisan vendor:publish
This will create a panlogic.donate.php file in your Config directory, be sure to fill in the appropriate details provided by Donate.
If you aren't using Laravel then you can create a Donate object by:
use Panlogic\DONATE\Donate; $config = [ 'live_apikey' => 'your-live-api-key-here', 'test_apikey' => 'your-test-api-key-here', 'platform' => 'test', ]; $donate = new Donate($config);
For more information about how to use the Donate class, read the Wiki
Copyright and Licence
Donate has been written by Panlogic Ltd and is released under the MIT License.
统计信息
- 总下载量: 116
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-04