PHPackages                             bramdeleeuw/silverstripe-event-tickets - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bramdeleeuw/silverstripe-event-tickets

ActiveSilverstripe-vendormodule[Utility &amp; Helpers](/categories/utility)

bramdeleeuw/silverstripe-event-tickets
======================================

Event tickets for SilverStripe Event Calendar

3.0.1(10mo ago)47824[4 PRs](https://github.com/TheBnl/event-tickets/pulls)2BSD-3-ClausePHP

Since Apr 25Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/TheBnl/event-tickets)[ Packagist](https://packagist.org/packages/bramdeleeuw/silverstripe-event-tickets)[ Docs](https://github.com/TheBnl/event-tickets)[ RSS](/packages/bramdeleeuw-silverstripe-event-tickets/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (9)Versions (65)Used By (2)

Event tickets for SilverStripe
==============================

[](#event-tickets-for-silverstripe)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/58cba8b280cca640ed91596214978f3b8e507dc3db5cd7f280fd4371bec22750/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f546865426e6c2f6576656e742d7469636b6574732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/TheBnl/event-tickets/?branch=master)[![Build Status](https://camo.githubusercontent.com/6c9db03db59637f2152077a4245829d6a5f05b97ed32fed19c8b49a857ca7ffb/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f546865426e6c2f6576656e742d7469636b6574732f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/TheBnl/event-tickets/build-status/master)[![Latest Stable Version](https://camo.githubusercontent.com/4e2af07fe458b55031bba0d320d5c632e35918ed67af7e295aec7a5f5f8ba4a9/68747470733a2f2f706f7365722e707567782e6f72672f6272616d64656c656575772f73696c7665727374726970652d6576656e742d7469636b6574732f76657273696f6e)](https://packagist.org/packages/bramdeleeuw/silverstripe-event-tickets)

Add a ticket office to your silverstripe site. Payments handled trough the SilverStripe Omnipay module.

Installation
------------

[](#installation)

Install the module trough composer

```
composer require bramdeleeuw/silverstripe-event-tickets
```

Add the nessesary extensions to the DataObject you want to sell tickets on. This can be an Event, for example with an [events module](https://github.com/xddesigners/silverstripe-events). Or you can add the tickets to a special tickets Page, when, for example, you are selling tickets for an festival where one ticket grants access to multiple events.

```
# the object that sells tickets
XD\Events\Model\EventPage:
 extensions:
   - Broarm\EventTickets\Extensions\TicketExtension
# the ticket controller
XD\Events\Model\EventPageController:
 extensions:
   - Broarm\EventTickets\Extensions\TicketControllerExtension
   - Broarm\EventTickets\Checkout\Steps\RegisterStep
   - Broarm\EventTickets\Checkout\Steps\SummaryStep
   - Broarm\EventTickets\Checkout\Steps\SuccessStep
```

On the extended Object you need to expose a couple of methods that we use to add data to the ticket.

```
public function getEventTitle()
{
    return $this->owner->Title;
}

public function getEventStartDate()
{
    return $this->owner->dbObject('StartDate');
}

public function getEventAddress()
{
    $this->owner->getFullAddress();
}
```

### Maintainers

[](#maintainers)

[Bram de Leeuw](http://www.twitter.com/bramdeleeuw)

###  Health Score

45

—

FairBetter than 92% of packages

Maintenance53

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 91.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~54 days

Recently: every ~151 days

Total

56

Last Release

327d ago

Major Versions

1.x-dev → 2.0.02021-10-29

2.x-dev → 3.0.02025-06-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/6131c03b7f5ba6b10fef192c90d68d57508e84c007a13321df6960b8298e19d1?d=identicon)[TheBnl](/maintainers/TheBnl)

---

Top Contributors

[![TheBnl](https://avatars.githubusercontent.com/u/1334195?v=4)](https://github.com/TheBnl "TheBnl (203 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (16 commits)")[![AntonyThorpe](https://avatars.githubusercontent.com/u/1023740?v=4)](https://github.com/AntonyThorpe "AntonyThorpe (2 commits)")

---

Tags

ecommerceevent-calendarevent-ticketsomnipaysilverstripeeventsilverstripecalendaromnipayticket

### Embed Badge

![Health badge](/badges/bramdeleeuw-silverstripe-event-tickets/health.svg)

```
[![Health](https://phpackages.com/badges/bramdeleeuw-silverstripe-event-tickets/health.svg)](https://phpackages.com/packages/bramdeleeuw-silverstripe-event-tickets)
```

###  Alternatives

[silverstripe/userforms

UserForms enables CMS users to create dynamic forms via a drag and drop interface and without getting involved in any PHP code

1321.0M72](/packages/silverstripe-userforms)[silverstripe/event-calendar

Event Calendar for the SilverStripe CMS

318.5k3](/packages/silverstripe-event-calendar)[bramdeleeuw/cookieconsent

GDPR compliant cookie bar and consent checker

1511.5k2](/packages/bramdeleeuw-cookieconsent)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
