jclavo/profiles
最新稳定版本:0.6.0
Composer 安装命令:
composer require jclavo/profiles
包简介
This a package to manage profiles on Ministerio da Cidadania
README 文档
README
Installation
You can install the package via composer:
composer require jclavo/profiles
After that, add the package providers on app.php
'providers' => [ ... /* * Package Service Providers... */ Jclavo\Profiles\Providers\ProfilesProvider::class, ... ]
Usage
use Jclavo\Profiles\Models\Profile; $profile = new Profile(); $profile->name = 'my new profile'; $profile->description = 'description for my new profile'; $profile->activated = true; $profile->fixed = false; $profile->save();
Testing
./vendor/bin/phpunit ./vendor/bin/phpunit tests/Unit/ProfileTest.php
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-28