vankosoft / users-subscriptions-bundle
VankoSoft Symfony Application Extension - Users Subscriptions Bundle
Package info
github.com/iatanasov77/vs-users-subscriptions-bundle
Type:symfony-bundle
pkg:composer/vankosoft/users-subscriptions-bundle
v3.1.6
2026-04-22 07:56 UTC
Requires
- php: ^7.2|^8.0
- drewm/mailchimp-api: 2.5.*
- nyholm/psr7: ^1.5
Suggests
- vankosoft/payment-bundle: Allows to create payed services and to subcribes to them. It is required to can Use of PayedServiceSubscription Resource.
- vankosoft/users-bundle: Required this one or some another bundle that provide an User Entity.
Conflicts
- doctrine/doctrine-bundle: <1.3
- symfony/doctrine-bridge: <2.7
This package is not auto-updated.
Last update: 2026-06-03 08:27:40 UTC
README
Example User Entity
<?php namespace App\Entity\UserManagement;
use Doctrine\ORM\Mapping as ORM;
use Vankosoft\UsersBundle\Model\User as BaseUser;
use Vankosoft\UsersSubscriptionsBundle\Model\Interfaces\SubscribedUserInterface;
use Vankosoft\UsersSubscriptionsBundle\Model\Traits\SubscribedUserTrait;
/**
* @ORM\Entity
* @ORM\Table(name="VSUM_Users")
*/
class User extends BaseUser implements SubscribedUserInterface
{
use SubscribedUserTrait;
}