repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectRetryOnFailure.php
tests/src/AspectRetryOnFailure.php
<?php namespace __Test; use Ytake\LaravelAspect\Annotation\RetryOnFailure; /** * Class AspectRetryOnFailure */ class AspectRetryOnFailure { /** @var int */ public $counter = 0; /** * @RetryOnFailure( * types={ * \LogicException::class * }, * attempts=3 ...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/MessageDrivenModule.php
tests/src/MessageDrivenModule.php
<?php namespace __Test; /** * Class MessageDrivenModule */ class MessageDrivenModule extends \Ytake\LaravelAspect\Modules\MessageDrivenModule { /** @var array */ protected $classes = [ AspectMessageDriven::class, ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectLoggable.php
tests/src/AspectLoggable.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\Loggable; class AspectLoggable { /** * @Loggable * @param null $id * @return null */ public function normalLog($id = null) { return $id; } /** * @Loggable(skipResult=true) * @para...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/LogExceptionsModule.php
tests/src/LogExceptionsModule.php
<?php namespace __Test; use Ytake\LaravelAspect\Modules\LogExceptionsModule as Loggable; class LogExceptionsModule extends Loggable { /** * @var array */ protected $classes = [ \__Test\AspectLogExceptions::class, \__Test\AnnotationStub::class ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AnnotationStub.php
tests/src/AnnotationStub.php
<?php namespace __Test; use Ytake\LaravelAspect\Annotation\LogExceptions; /** * Class AnnotationStub * for tests * @Resource */ class AnnotationStub { /** * @LogExceptions * @Get * @param null $id * @return null */ public function testing($id = null) { return $id; ...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/TransactionalModule.php
tests/src/TransactionalModule.php
<?php namespace __Test; use Ytake\LaravelAspect\Modules\TransactionalModule as Transactional; class TransactionalModule extends Transactional { /** * @var array */ protected $classes = [ AspectTransactionalDatabase::class, AspectTransactionalString::class, AspectQueryLog::cl...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/RetryOnFailureModule.php
tests/src/RetryOnFailureModule.php
<?php namespace __Test; /** * Class RetryOnFailureModule */ class RetryOnFailureModule extends \Ytake\LaravelAspect\Modules\RetryOnFailureModule { /** @var array */ protected $classes = [ AspectRetryOnFailure::class, ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/QueryLogModule.php
tests/src/QueryLogModule.php
<?php namespace __Test; use Ytake\LaravelAspect\Modules\QueryLogModule as QueryLog; class QueryLogModule extends QueryLog { /** * @var array */ protected $classes = [ AspectQueryLog::class ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/CacheableModule.php
tests/src/CacheableModule.php
<?php namespace __Test; class CacheableModule extends \Ytake\LaravelAspect\Modules\CacheableModule { /** * @var array */ protected $classes = [ \__Test\AspectCacheable::class, \__Test\AspectCacheEvict::class, \__Test\AspectMerge::class, \ResolveMockClass::class, ]...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectTransactionalDatabase.php
tests/src/AspectTransactionalDatabase.php
<?php /** * for test */ namespace __Test; use Illuminate\Database\QueryException; use Ytake\LaravelAspect\Annotation\Transactional; use Illuminate\Database\ConnectionResolverInterface; /** * Class AspectTransactionalDatabase * * @package __Test */ class AspectTransactionalDatabase { /** @var ConnectionReso...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectTransactionalString.php
tests/src/AspectTransactionalString.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\Transactional; /** * Class AspectTransactional * @package Test */ class AspectTransactionalString { /** * @Transactional(value="testing") * * @return string */ public function start() { return 't...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectMerge.php
tests/src/AspectMerge.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\Cacheable; use Ytake\LaravelAspect\Annotation\CacheEvict; /** * Class AspectMerge */ class AspectMerge implements AspectMergeInterface { /** * * @CacheEvict(tags={"testing1","testing2"},key={"#id"}) * @Cacheable(tags=...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectLogExceptions.php
tests/src/AspectLogExceptions.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\LogExceptions; use Ytake\LaravelAspect\Exception\FileNotFoundException; class AspectLogExceptions { /** * @LogExceptions(driver="custom") * @param null $id * @return null * @throws \Exception */ public fun...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectContextualBinding.php
tests/src/AspectContextualBinding.php
<?php namespace __Test; use Ytake\LaravelAspect\Annotation\Loggable; /** * Class AspectContextualBinding * * for testing */ class AspectContextualBinding { /** @var \ResolveMockInterface */ protected $resolveMock; /** * AspectContextualBinding constructor. * * @param \ResolveMockInte...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectMergeInterface.php
tests/src/AspectMergeInterface.php
<?php namespace __Test; /** * Class AspectMergeInterface * @package __Test */ interface AspectMergeInterface { }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectCacheable.php
tests/src/AspectCacheable.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\Cacheable; /** * Class AspectCacheable * * @package __Test */ class AspectCacheable { /** * @Cacheable(key="#id",driver="null") * @param null $id * * @return null */ public function singleKey($id = nul...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectQueryLog.php
tests/src/AspectQueryLog.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\QueryLog; use Ytake\LaravelAspect\Annotation\Transactional; use Illuminate\Database\ConnectionResolverInterface; /** * Class AspectQueryLog */ class AspectQueryLog { /** @var ConnectionResolverInterface */ protected $db; /*...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/TestableLogger.php
tests/src/TestableLogger.php
<?php declare(strict_types=1); namespace __Test; use Monolog\Logger; use Monolog\Handler\StreamHandler; use Psr\Log\LoggerInterface; class TestableLogger { /** * @param array $config * * @return LoggerInterface * @throws \Exception */ public function __invoke(array $config): LoggerIn...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/AspectCacheEvict.php
tests/src/AspectCacheEvict.php
<?php /** * for test */ namespace __Test; use Ytake\LaravelAspect\Annotation\Cacheable; use Ytake\LaravelAspect\Annotation\CacheEvict; /** * Class AspectCacheEvict * * @package __Test */ class AspectCacheEvict { /** * @CacheEvict(cacheName="singleCacheDelete") * @return string */ public ...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/LoggableModule.php
tests/src/LoggableModule.php
<?php namespace __Test; use Ytake\LaravelAspect\Modules\LoggableModule as Loggable; class LoggableModule extends Loggable { /** * @var array */ protected $classes = [ AspectLoggable::class, AspectContextualBinding::class, AspectMessageDriven::class, ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/CachePutModule.php
tests/src/CachePutModule.php
<?php namespace __Test; class CachePutModule extends \Ytake\LaravelAspect\Modules\CachePutModule { /** * @var array */ protected $classes = [ \__Test\AspectCachePut::class, ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/src/CacheEvictModule.php
tests/src/CacheEvictModule.php
<?php namespace __Test; class CacheEvictModule extends \Ytake\LaravelAspect\Modules\CacheEvictModule { /** * @var array */ protected $classes = [ \__Test\AspectCacheEvict::class, \__Test\AspectMerge::class ]; }
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/Interceptor/MessageDrivenInterceptorTest.php
tests/Interceptor/MessageDrivenInterceptorTest.php
<?php declare(strict_types=1); use Illuminate\Container\Container; use Illuminate\Contracts\Bus\Dispatcher; use Ytake\LaravelAspect\Annotation\MessageDriven; use Ytake\LaravelAspect\Interceptor\MessageDrivenInterceptor; final class MessageDrivenInterceptorTest extends \AspectTestCase { /** @var \Ytake\LaravelAspe...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/Commands/AspectClearCacheCommandTest.php
tests/Commands/AspectClearCacheCommandTest.php
<?php /** * Class AspectClearCacheCommandTest */ class AspectClearCacheCommandTest extends \AspectTestCase { /** @var \Ytake\LaravelAspect\AspectManager $manager */ protected $manager; /** @var \Ytake\LaravelAspect\Console\ClearCacheCommand */ protected $command; protected function setUp(): voi...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/config/logging.php
tests/config/logging.php
<?php use Monolog\Handler\StreamHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- | | This option defines the default log channel that gets used when w...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/config/queue.php
tests/config/queue.php
<?php return [ 'default' => 'sync', 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, ], ...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/config/ytake-laravel-aop.php
tests/config/ytake-laravel-aop.php
<?php return [ 'aspect' => [ /** * choose aop library * "ray"(Ray.Aop), "none"(for testing) */ 'default' => 'ray', /** * */ 'drivers' => [ 'ray' => [ 'force_compile' => false, // string ...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/config/cache.php
tests/config/cache.php
<?php return [ 'default' => 'array', 'stores' => [ 'array' => [ 'driver' => 'array', ], 'null' => [ 'driver' => 'null', ], ], 'prefix' => 'laravel-aop-package', ];
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
ytake/Laravel-Aspect
https://github.com/ytake/Laravel-Aspect/blob/c00a321e6c5fd816f7ec86874acea0089c1a3a64/tests/config/database.php
tests/config/database.php
<?php return [ 'fetch' => PDO::FETCH_CLASS, 'default' => 'testing', 'connections' => [ 'testing' => [ 'driver' => 'sqlite', 'database' => ':memory:', 'prefix' => '', ], 'testing_second' => [ 'driver' => 'sqlite', 'databa...
php
MIT
c00a321e6c5fd816f7ec86874acea0089c1a3a64
2026-01-05T04:51:02.354274Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/DebrilRssAtomBundle.php
src/DebrilRssAtomBundle.php
<?php namespace Debril\RssAtomBundle; use Symfony\Component\HttpKernel\Bundle\Bundle; class DebrilRssAtomBundle extends Bundle { }
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Controller/StreamController.php
src/Controller/StreamController.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Controller; use Debril\RssAtomBundle\Provider\FeedProviderInterface; use Debril\RssAtomBundle\Exception\FeedException\FeedNotFoundException; use Debril\RssAtomBundle\Response\FeedBuilder; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Request/ModifiedSince.php
src/Request/ModifiedSince.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Request; use Psr\Log\LoggerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestStack; class ModifiedSince { const HTTP_HEADER_NAME = 'If-Modified-Since'; private $logger; private $requestSta...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/DependencyInjection/Configuration.php
src/DependencyInjection/Configuration.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; /** * This is the class that validates ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/DependencyInjection/DebrilRssAtomExtension.php
src/DependencyInjection/DebrilRssAtomExtension.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\DependencyInjection; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Definition; use Symfony\Component\Config\FileLocator; use S...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Response/HeadersBuilder.php
src/Response/HeadersBuilder.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Response; use Symfony\Component\HttpFoundation\Response; class HeadersBuilder { const DEFAULT_MAX_AGE = 3600; const FORMAT_XML = 'xml'; const DEFAULT_XML_CONTENT_TYPE = 'application/xhtml+xml'; /** * supported content-types ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Response/FeedBuilder.php
src/Response/FeedBuilder.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Response; use Debril\RssAtomBundle\Request\ModifiedSince; use FeedIo\FeedInterface; use FeedIo\FeedIo; use Symfony\Component\HttpFoundation\Response; class FeedBuilder { /** * @var FeedIo */ private $feedIo; /** * @var Modifie...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException.php
src/Exception/FeedException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception; /** * Class FeedException. * * @author Sullivan Senechal <soullivaneuh@gmail.com> */ class FeedException extends RssA...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/RssAtomException.php
src/Exception/RssAtomException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception; /** * Class RssAtomException. * * @author Sullivan Senechal <soullivaneuh@gmail.com> */ class RssAtomException extend...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/ParserException.php
src/Exception/ParserException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception; /** * Class ParserException. * @deprecated removed in version 3.0 */ class ParserException extends RssAtomException { ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/DriverUnreachableResourceException.php
src/Exception/DriverUnreachableResourceException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception; /** * Class DriverUnreachableResourceException. * @deprecated removed in version 3.0 */ class DriverUnreachableResourc...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException/FeedServerErrorException.php
src/Exception/FeedException/FeedServerErrorException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception\FeedException; use Debril\RssAtomBundle\Exception\FeedException; /** * Class FeedServerErrorException. */ class FeedSer...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException/FeedCannotBeReadException.php
src/Exception/FeedException/FeedCannotBeReadException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception\FeedException; use Debril\RssAtomBundle\Exception\FeedException; /** * Class FeedCannotBeReadException. */ class FeedCa...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException/FeedNotFoundException.php
src/Exception/FeedException/FeedNotFoundException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception\FeedException; use Debril\RssAtomBundle\Exception\FeedException; /** * Class FeedNotFoundException. */ class FeedNotFou...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException/FeedForbiddenException.php
src/Exception/FeedException/FeedForbiddenException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception\FeedException; use Debril\RssAtomBundle\Exception\FeedException; /** * Class FeedForbiddenException. */ class FeedForbi...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Exception/FeedException/FeedNotModifiedException.php
src/Exception/FeedException/FeedNotModifiedException.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ namespace Debril\RssAtomBundle\Exception\FeedException; use Debril\RssAtomBundle\Exception\FeedException; /** * Class FeedNotModifiedException. */ class FeedNot...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Resources/sample/Provider.php
src/Resources/sample/Provider.php
<?php # src/Feed/provider.php namespace App\Feed; // this part assumes that you published "Post" entities use App\Entity\Post; use App\Repository\PostRepository; // All you really need to create a feed use Debril\RssAtomBundle\Provider\FeedProviderInterface; use Doctrine\Bundle\DoctrineBundle\Registry; use FeedIo\F...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Provider/FeedProviderInterface.php
src/Provider/FeedProviderInterface.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Provider; use Debril\RssAtomBundle\Exception\FeedException\FeedNotFoundException; use FeedIo\FeedInterface; use Symfony\Component\HttpFoundation\Request; interface FeedProviderInterface { /** * @param Request $request * @return FeedInterfac...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/src/Provider/MockProvider.php
src/Provider/MockProvider.php
<?php declare(strict_types=1); /** * RssAtomBundle. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril * * creation date : 31 mars 2013 */ namespace Debril\RssAtomBundle\Provider; use FeedIo\Feed; use FeedIo\Feed\Item; use Debril\RssAtomBundle\Exception\Fe...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/bootstrap.php
tests/bootstrap.php
<?php /** * Rss/Atom Bundle for Symfony. * * * @license http://opensource.org/licenses/lgpl-3.0.html LGPL * @copyright (c) 2013, Alexandre Debril */ $file = __DIR__.'/../../../../../../vendor/autoload.php'; if (!file_exists($file)) { $file = __DIR__.'/../vendor/autoload.php'; } if (!file_exists($file)) { ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Controller/StreamControllerTest.php
tests/Controller/StreamControllerTest.php
<?php namespace Debril\RssAtomBundle\Tests\Controller; use FeedIo\Reader\Document; use FeedIo\Rule\DateTimeBuilder; use FeedIo\Standard\Atom; use FeedIo\Standard\Json; use FeedIo\Standard\Rss; use Psr\Log\NullLogger; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; /** * Class StreamControllerTest. */ class St...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Controller/App/AppKernel.php
tests/Controller/App/AppKernel.php
<?php // Tests/Controller/App/AppKernel.php namespace Debril\RssAtomBundle\Tests\Controller\App; use \Symfony\Component\HttpKernel\Bundle\Bundle; use \Symfony\Component\HttpKernel\Kernel; use \Symfony\Component\Config\Loader\LoaderInterface; /** * Class AppKernel. */ class AppKernel extends Kernel { /** ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Request/ModifiedSinceTest.php
tests/Request/ModifiedSinceTest.php
<?php namespace Debril\RssAtomBundle\Tests\Request; use Debril\RssAtomBundle\Request\ModifiedSince; use PHPUnit\Framework\TestCase; use Psr\Log\NullLogger; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestStack; class ModifiedSinceTest extends TestCase { public function ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/DependencyInjection/ConfigurationTest.php
tests/DependencyInjection/ConfigurationTest.php
<?php namespace Debril\RssAtomBundle\Tests\DependencyInjection; use Debril\RssAtomBundle\DependencyInjection\Configuration; use PHPUnit\Framework\TestCase; class ConfigurationTest extends TestCase { public function testGetConfigTreeBuilder() { $configuration = new Configuration(); $tree = $...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Response/FeedBuilderTest.php
tests/Response/FeedBuilderTest.php
<?php namespace Debril\RssAtomBundle\Tests\Response; use Debril\RssAtomBundle\Request\ModifiedSince; use Debril\RssAtomBundle\Response\FeedBuilder; use Debril\RssAtomBundle\Response\HeadersBuilder; use FeedIo\Factory; use FeedIo\Feed; use FeedIo\FeedIo; use PHPUnit\Framework\TestCase; use Psr\Log\NullLogger; use Symf...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Response/HeadersBuilderTest.php
tests/Response/HeadersBuilderTest.php
<?php declare(strict_types=1); namespace Debril\RssAtomBundle\Tests\Response; use Debril\RssAtomBundle\Response\HeadersBuilder; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\Response; class HeadersBuilderTest extends TestCase { public function testSetResponseHeadersPublic() { ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
alexdebril/rss-atom-bundle
https://github.com/alexdebril/rss-atom-bundle/blob/29e624c428d4284726e5da5e0d245cbc93d1f17a/tests/Provider/MockProviderTest.php
tests/Provider/MockProviderTest.php
<?php namespace Debril\RssAtomBundle\Tests\Provider; use Debril\RssAtomBundle\Provider\MockProvider; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\Request; /** * Generated by PHPUnit_SkeletonGenerator 1.2.0 on 2013-01-25 at 23:47:50. */ class MockProviderTest extends TestCase { /** ...
php
MIT
29e624c428d4284726e5da5e0d245cbc93d1f17a
2026-01-05T04:51:13.799383Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/index.php
index.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/install.php
install.php
<?php /* * Copyright 2014 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/logout.php
src/logout.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/display_event.php
src/display_event.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/globals.php
src/globals.php
<?php /* * Copyright 2010 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/display_day.php
src/display_day.php
<?php /* * Copyright 2014 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/category_delete.php
src/category_delete.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/translate.php
src/translate.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/occurrence_delete.php
src/occurrence_delete.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/cadmin.php
src/cadmin.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/phpcdatabase.class.php
src/phpcdatabase.class.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/embed_setup.php
src/embed_setup.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/password_submit.php
src/password_submit.php
<?php /* * Copyright 2010 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/phpcuser.class.php
src/phpcuser.class.php
<?php /* * Copyright 2009 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/occur_form.php
src/occur_form.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/admin.php
src/admin.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/display_month.php
src/display_month.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/user_permissions_submit.php
src/user_permissions_submit.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/search.php
src/search.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/display_week.php
src/display_week.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/group_form.php
src/group_form.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/event_form.php
src/event_form.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/phpcevent.class.php
src/phpcevent.class.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/user_groups.php
src/user_groups.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/setup.php
src/setup.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/group_delete.php
src/group_delete.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/event_delete.php
src/event_delete.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/user_create.php
src/user_create.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/login.php
src/login.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/category_form.php
src/category_form.php
<?php /* * Copyright 2010 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/calendar_form.php
src/calendar_form.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/msgfmt-functions.php
src/msgfmt-functions.php
<?php /** * php-msgfmt * * php-msgfmt is dual-licensed under * the GNU Lesser General Public License, version 2.1, and * the Apache License, version 2.0. * * For the terms of the licenses, see the LICENSE-LGPL.txt and LICENSE-AL2.txt * files, respectively. * * * Copyright (C) 2007 Matthias Bauer * *...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/util.php
src/util.php
<?php /* * Copyright 2014 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/category_submit.php
src/category_submit.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/calendar.php
src/calendar.php
<?php /* * Copyright 2017 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/cadmin_submit.php
src/cadmin_submit.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/group_submit.php
src/group_submit.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/html.php
src/html.php
<?php /* * Copyright 2009 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/user_delete.php
src/user_delete.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/settings.php
src/settings.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/calendar_delete.php
src/calendar_delete.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/import.php
src/import.php
<?php /* * Copyright 2013 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/phpccalendar.class.php
src/phpccalendar.class.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false
sproctor/php-calendar
https://github.com/sproctor/php-calendar/blob/e9473676f311aac8e9577cb3371ed362418441d9/src/embed.php
src/embed.php
<?php /* * Copyright 2012 Sean Proctor * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ag...
php
Apache-2.0
e9473676f311aac8e9577cb3371ed362418441d9
2026-01-05T04:51:20.275579Z
false