beanbean / activity
Activity package for Laravel
0.1.0
2019-03-27 05:49 UTC
Requires
- php: >=7.1
- doctrine/dbal: ^2.8
- php-soft/laravel-array-view: ^1.1
- toancong/base: *
Requires (Dev)
- mockery/mockery: ~1.0
- orchestra/testbench: ^3.7
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2025-03-27 19:26:19 UTC
README
a laravel package follow activity stream spec and jsonapi
Examples
https://github.com/toancong/activity-demo
Install
composer require beanbean/activity
Usage
Integrate with your code
- Add trait Activitiable in your models
// class User, class Product
use \Bean\Activity\Traits\Activitiable;
- Add an activity when something happen
// when user favorite a product
app('activity')->create([
// 'favorite'
'type' => ActivityConst::FAVORITE_PRODUCT,
// selected fields to save
'actor' => $user->toObject('id', 'fullname', 'avatar_url'),
// selected fields to save
'object' => $product->toObject('id', 'title', 'image_url'),
// a placeholder template to use later
'summary' => '{{actor}} {{type}} {{object}}',
]);
// when user unfavorite a product
app('activity')->delete($user, 'favorite', $product);
//browse to display
$activities = app('activity')->browse([
'target_id' => (string)$user->id,
'type' => 'favorite',
], [
'page' => [
'size' => 50,
]
]);
Integrate with API
Comming soon
Todo
- Activity service
- BREAD api
- UI in-app notification, activity
- UI theme support
- Real-time activity
- Horizontal Partitioning
Contribute
PR are welcome. Please open an issue first and submit PR with a good commit message. Thanks
Dev
docker-compose run --rm --entrypoint=composer test install
Test
docker-compose run --rm test
License
MIT