jchr86 / calendr
Object Oriented calendar management
Requires
- php: ^5.5|^7.0
- symfony/options-resolver: ^2.7|^3.0|^4.0|^5.0
Requires (Dev)
- doctrine/cache: ^1.5
- doctrine/common: ^2.5
- doctrine/orm: ^2.5
- phpunit/phpunit: ^4.8.35|^5.4.0|^6.0|^7.0
- silex/silex: ^1.3
- symfony/config: ^2.7|^3.4|^4.0|^5.0
- symfony/dependency-injection: ^2.7|^3.4|^4.0|^5.0
- symfony/yaml: ^2.7|^3.4|^4.0|^5.0
- twig/twig: ^1.23|^2.0
This package is auto-updated.
Last update: 2025-03-29 00:43:32 UTC
README
CalendR is an Object Oriented Calendar management library on top of PHP5.3+ Date objects. You can use it to deal with all your needs about calendars and events.
Complete documentation
Complete documentation is available here.
Installation
CalendR is hosted on packagist, you can install it with composer.
Open a command console, enter your project directory and execute:
$ composer require jchr86/calendr
Applications that use Symfony Flex
Enable the Bundle.
Enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php return [ // ... CalendR\Bridge\Symfony\Bundle\CalendRBundle::class => ['all' => true], ];
Register an event provider.
// src/Repository/EventRepository.php namespace App\Repository; use App\Entity\Event; use CalendR\Bridge\Doctrine\ORM\EventRepository; use CalendR\Event\Provider\ProviderInterface; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Common\Persistence\ManagerRegistry; use Doctrine\ORM\Query\Expr; class EventRepository extends ServiceEntityRepository implements ProviderInterface { use EventRepository; public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Event::class); } }
// config/services.yaml services: App\Repository\EventRepository: tags: - { name: calendr.event_provider }
Contribute
Calendar is open to contributions. Merging delays can vary depending to my free time, but always be welcome.
License
CalendR is licensed under the MIT License - see the LICENSE file for details