PHPackages                             striide/calendar-bundle - 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. striide/calendar-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

striide/calendar-bundle
=======================

Useful Calendar Features.

3952PHP

Since Dec 3Pushed 12y ago1 watchersCompare

[ Source](https://github.com/chadl/StriideCalendarBundle)[ Packagist](https://packagist.org/packages/striide/calendar-bundle)[ RSS](/packages/striide-calendar-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

StriideCalendarBundle
=====================

[](#striidecalendarbundle)

The intent for this Bundle is to provide a bridge between  and Symfony

Routing
-------

[](#routing)

StriideCalendarBundle: resource: "@StriideCalendarBundle/Resources/config/routing.yml" prefix: /

Example Use:
------------

[](#example-use)

```
    $calendar = new Calendar();
    $calendar->setGuid(md5("some unique randome identifier));
    $calendar->setName("My Calendar Feed");
    $calendar->setDescription("Description of my Calendar Feed");

    $items = ...; // set of events to be used in the calendar feed

    foreach($items as $item)
    {
      $ce = new Event();
      $ce->setStarttime($item->getLocalStartTime());
      $ce->setLocation($item->getLocation());
      $ce->setEndtime($item->getLocalEndTime());
      $ce->setName($item->getTitle());

      $calendar->addEvent($ce);
      $calendar->setTimezone($item->getDateTimeZone());
    }

    $ics = $this->get('striide_calendar.service')->calendarToIcs($calendar);
    $filename = "feed.ics";
    return new Response(
                        $ics->render(),
                        200,
                        array(
                              'Content-type' => "text/calendar",
                              'Content-Disposition' => 'inline; filename="'.$filename.'"'
                            )
                          );
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/905768?v=4)[Chad Lindstrom](/maintainers/chadl)[@chadl](https://github.com/chadl)

---

Top Contributors

[![chadl](https://avatars.githubusercontent.com/u/905768?v=4)](https://github.com/chadl "chadl (19 commits)")

### Embed Badge

![Health badge](/badges/striide-calendar-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/striide-calendar-bundle/health.svg)](https://phpackages.com/packages/striide-calendar-bundle)
```

PHPackages © 2026

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