bulletdigitalsolutions / doctrine-cashier
Enables you to use cashier on doctrine
Requires
- php: ^8.0
- bulletdigitalsolutions/doctrine-eloquent: 1.0.2
- illuminate/support: ^8.0|^9.0|^10.0|^11.0
- laravel-doctrine/acl: ^1.0
- laravel-doctrine/extensions: ^1.0
- laravel-doctrine/orm: ^1.8|^2.0
- laravel/cashier: ^13.12|^14.7|^15.2
Requires (Dev)
- laravel/pint: ^1.1
README
This package is in early development and not yet tested for production use.
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Installation
You can install the package via composer:
composer require bulletdigitalsolutions/doctrine-cashier
Usage
Your user entity should extend the BillableEntity class
/** * @ORM\Table() * @ORM\Entity * @Gedmo\Loggable(logEntryClass="App\Entities\Audit") */ class User extends BillableEntity
Your user entity must implement getRepository, which returns a repository that implement BillableEntityContract
public function getRepository() { return app(UserContract::class); }
class UserRepository extends CoreRepository implements UserContract { use TwoFactorRepository, BillableRepository;
You should then extend the Subscription and SubscriptionItem entities
<?php namespace App\Entities; use BulletDigitalSolutions\DoctrineCashier\Contracts\UserSubscriptionContract; use BulletDigitalSolutions\DoctrineCashier\Entities\UserSubscription as BaseSubscription; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; /** * @ORM\Table * @ORM\Entity * @Gedmo\Loggable(logEntryClass="App\Entities\Audit") */ class Subscription extends BaseSubscription implements UserSubscriptionContract { /** * @ORM\Column(type="integer", nullable=false) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ protected $id; /** * @ORM\ManyToOne(targetEntity="User") * @ORM\JoinColumn(referencedColumnName="id") */ protected $user; /** * @return mixed */ public function getId() { return $this->id; } /** * @param mixed $id */ public function setId($id): void { $this->id = $id; } /** * @return mixed */ public function getUser() { return $this->user; } /** * @param mixed $user */ public function setUser($user): void { $this->user = $user; } }
<?php namespace App\Entities; use BulletDigitalSolutions\DoctrineCashier\Contracts\UserSubscriptionItemContract; use BulletDigitalSolutions\DoctrineCashier\Entities\UserSubscriptionItem as BaseSubscriptionItem; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; /** * @ORM\Table * @ORM\Entity * @Gedmo\Loggable(logEntryClass="App\Entities\Audit") */ class SubscriptionItem extends BaseSubscriptionItem implements UserSubscriptionItemContract { /** * @ORM\Column(type="integer", nullable=false) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ protected $id; /** * @ORM\ManyToOne(targetEntity="Subscription", inversedBy="items") * @ORM\JoinColumn(referencedColumnName="id") */ protected $subscription; /** * @return mixed */ public function getId() { return $this->id; } /** * @param mixed $id */ public function setId($id): void { $this->id = $id; } /** * @return mixed */ public function getSubscription() { return $this->subscription; } /** * @param mixed $subscription */ public function setSubscription($subscription): void { $this->subscription = $subscription; } }
You then need to register your entities on the CashierServiceProvider
<?php namespace App\Providers; use App\Entities\Subscription; use App\Entities\SubscriptionItem; use App\Entities\User; use Illuminate\Support\ServiceProvider; use BulletDigitalSolutions\DoctrineCashier\Cashier; class CashierServiceProvider extends ServiceProvider { /** * Register services. * * @return void */ public function register() { Cashier::ignoreMigrations(); } /** * Bootstrap services. * * @return void */ public function boot() { Cashier::useSubscriptionModel(Subscription::class); Cashier::useSubscriptionItemModel(SubscriptionItem::class); Cashier::useCustomerModel(User::class); } }
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email andrew@bulletdigitalsolutions.co.uk instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.