adetoola/avatar
Composer 安装命令:
composer require adetoola/avatar
包简介
Gmail-like default avatars using initials
README 文档
README
Gmail-like default avatars using initials
Contents
Installation
Via Composer in Terminal
$ composer require adetoola/sms
Via Composer in composer.json
Begin by installing avatar by editing your project's composer.json file. Just add
'require": {
"adetoola/avatar": "0.1.*"
}
Then run composer install or composer update.
If you are using laravel, open config/app.php add in the providers array.
'providers' => [ // ... Adetoola\Avatar\AvatarServiceProvider::class, ],
Then, find the aliases and add Facade to the array.
'aliases' => [ // ... 'Avatar' => Adetoola\Avatar\Facades\AvatarFacade::class, ],
Configuration
After installing, publish the package configuration file into your application by running
php artisan vendor:publish
##Usage Avatar is built to be easy to use.
$avatar = new Adettola\Avatar\Avatar(); $image = $avatar->size(150) ->background('#fff') ->rounded() ->color('#eee') ->font('roboto.ttf') ->fontSize(0.667) ->generate() ->stream(); ## Change log Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently. ## Contributing Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details. ## Security If you discover any security related issues, please email adetola.onasanya@gmail.com instead of using the issue tracker. ## Credits - [Adetola Onasanya](https://github.com/Adetoola) ## License SMS is an open-sourced package licensed under the [MIT license](http://opensource.org/licenses/MIT).
统计信息
- 总下载量: 20
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-28