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
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/components/invalid-foldable/error.blade.php
tests/fixtures/components/invalid-foldable/error.blade.php
@blaze @props(['name']) <div> @error($name) <span class="error">{{ $message }}</span> @enderror </div>
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/components/kanban/comments/comments.blade.php
tests/fixtures/components/kanban/comments/comments.blade.php
Comments
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/components/form/index.blade.php
tests/fixtures/components/form/index.blade.php
@blaze @props([]) <form> <div class="form-header"> {{ $header }} </div> <div class="form-body"> {{ $slot }} </div> <div class="form-footer"> {{ $footer }} </div> </form>
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/components/form/input.blade.php
tests/fixtures/components/form/input.blade.php
@blaze @props([]) <input {{ $attributes }} />
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/components/form/fields/text.blade.php
tests/fixtures/components/form/fields/text.blade.php
@blaze @props([]) <input type="text" {{ $attributes }} />
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
livewire/blaze
https://github.com/livewire/blaze/blob/412a05c7b333ee9ce5d8a61a23f80998ece76a9d/tests/fixtures/layouts/app.blade.php
tests/fixtures/layouts/app.blade.php
<html> <body> {{ $slot }} </body> </html>
php
MIT
412a05c7b333ee9ce5d8a61a23f80998ece76a9d
2026-01-05T05:18:39.918460Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/.php-cs-fixer.php
.php-cs-fixer.php
<?php $header = <<<'EOF' This file is part of the "StenopePHP/Stenope" bundle. @author Thomas Jarrand <thomas.jarrand@gmail.com> @author Maxime Steinhausser <maxime.steinhausser@gmail.com> EOF; $finder = (new PhpCsFixer\Finder()) ->in([__DIR__]) ->exclude('doc/app') ->exclude('tests/fixtures/app/var') ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/StenopeBundle.php
src/StenopeBundle.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle; use Stenope\Bundle\DependencyInjection\Compiler\TwigExtensionFixerCompilerPass; use Symfony\Component\...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Builder.php
src/Builder.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle; use Psr\Log\LoggerInterface; use Psr\Log\NullLogger; use Stenope\Bundle\Builder\PageList; use Stenope\...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ContentManager.php
src/ContentManager.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle; use Stenope\Bundle\Behaviour\ContentManagerAwareInterface; use Stenope\Bundle\Behaviour\HtmlCrawlerMan...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ContentManagerInterface.php
src/ContentManagerInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle; use Stenope\Bundle\ReverseContent\Context; use Symfony\Component\ExpressionLanguage\Expression; inter...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Content.php
src/Content.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle; final class Content { private string $slug; private string $type; private string $rawConte...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Routing/UrlGenerator.php
src/Routing/UrlGenerator.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Routing; use Stenope\Bundle\Builder\PageList; use Symfony\Component\Routing\Generator\UrlGeneratorInter...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Routing/ContentUrlResolver.php
src/Routing/ContentUrlResolver.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Routing; use Stenope\Bundle\Content; use Symfony\Component\Routing\RouterInterface; class ContentUrlRe...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Routing/ResolveContentRoute.php
src/Routing/ResolveContentRoute.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Routing; class ResolveContentRoute { /** Route name */ private string $route; /** Name of ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Routing/RouteInfo.php
src/Routing/RouteInfo.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Routing; use Stenope\Bundle\Builder; use Symfony\Component\Routing\Route; use Symfony\Component\Routing...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Routing/RouteInfoCollection.php
src/Routing/RouteInfoCollection.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Routing; use Symfony\Component\Routing\RouterInterface; /** * @phpstan-implements \IteratorAggregate<...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/AssetsProcessor.php
src/Processor/AssetsProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behaviour\Proce...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/ExtractTitleFromHtmlContentProcessor.php
src/Processor/ExtractTitleFromHtmlContentProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behaviour\Proce...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/CodeHighlightProcessor.php
src/Processor/CodeHighlightProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HighlighterInterface; use Stenope\Bundle\Behaviour\HtmlCrawlerM...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/SlugProcessor.php
src/Processor/SlugProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\ProcessorInterface; use Stenope\Bundle\Content; /** * Set "sl...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/HtmlAnchorProcessor.php
src/Processor/HtmlAnchorProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behaviour\Proce...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/HtmlExternalLinksProcessor.php
src/Processor/HtmlExternalLinksProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behaviour\Proce...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/TableOfContentProcessor.php
src/Processor/TableOfContentProcessor.php
<?php declare(strict_types=1); /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Sten...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/LastModifiedProcessor.php
src/Processor/LastModifiedProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\ProcessorInterface; use Stenope\Bundle\Content; use Stenope\Bun...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/ResolveContentLinksProcessor.php
src/Processor/ResolveContentLinksProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\ContentManagerAwareInterface; use Stenope\Bundle\Behaviour\Cont...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Processor/HtmlIdProcessor.php
src/Processor/HtmlIdProcessor.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Processor; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behaviour\Proce...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Builder/Sitemap.php
src/Builder/Sitemap.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Builder; /** * @phpstan-implements \Iterator<string,string> * * @phpstan-type Url = array{ * lo...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Builder/PageList.php
src/Builder/PageList.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Builder; /** * Page List */ class PageList implements \Countable { /** @var array<string,bool> */...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Highlighter/Prism.php
src/Highlighter/Prism.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Highlighter; use Psr\Log\LoggerInterface; use Psr\Log\NullLogger; use Stenope\Bundle\Behaviour\Highligh...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Highlighter/Pygments.php
src/Highlighter/Pygments.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Highlighter; use Stenope\Bundle\Behaviour\HighlighterInterface; use Symfony\Component\Filesystem\Filesy...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ReverseContent/Context.php
src/ReverseContent/Context.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ReverseContent; use Stenope\Bundle\ContentManagerInterface; /** * Context from which to resolve a con...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ReverseContent/RelativeLinkContext.php
src/ReverseContent/RelativeLinkContext.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ReverseContent; /** * Context to resolve a link to a content relative to the current one. */ class Re...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Twig/ContentExtension.php
src/Twig/ContentExtension.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Twig; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; /** * @final */ class ContentExte...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Twig/ContentRuntime.php
src/Twig/ContentRuntime.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Twig; use Stenope\Bundle\ContentManagerInterface; use Twig\Extension\RuntimeExtensionInterface; class ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ExpressionLanguage/ExpressionLanguageProvider.php
src/ExpressionLanguage/ExpressionLanguageProvider.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ExpressionLanguage; use Symfony\Component\ExpressionLanguage\ExpressionFunction; use Symfony\Component\...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ExpressionLanguage/Expression.php
src/ExpressionLanguage/Expression.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ExpressionLanguage; use Symfony\Component\ExpressionLanguage\Expression as BaseExpression; if (!class_...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ExpressionLanguage/ExpressionLanguage.php
src/ExpressionLanguage/ExpressionLanguage.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ExpressionLanguage; use Psr\Cache\CacheItemPoolInterface; use Symfony\Component\ExpressionLanguage\Expr...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/ExpressionLanguage/exprs.php
src/ExpressionLanguage/exprs.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\ExpressionLanguage; function expr(string ...$exprs): Expression { return Expression::combineAnd(......
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Serializer/Normalizer/SkippingInstantiatedObjectDenormalizer.php
src/Serializer/Normalizer/SkippingInstantiatedObjectDenormalizer.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Serializer\Normalizer; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; /** * Avoid...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/DependencyInjection/Configuration.php
src/DependencyInjection/Configuration.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\DependencyInjection; use Stenope\Bundle\Provider\Factory\LocalFilesystemProviderFactory; use Symfony\Co...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/DependencyInjection/StenopeExtension.php
src/DependencyInjection/StenopeExtension.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\DependencyInjection; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Behav...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/DependencyInjection/Compiler/TwigExtensionFixerCompilerPass.php
src/DependencyInjection/Compiler/TwigExtensionFixerCompilerPass.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\DependencyInjection\Compiler; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/HttpKernel/Controller/ArgumentResolver/ContentArgumentResolver.php
src/HttpKernel/Controller/ArgumentResolver/ContentArgumentResolver.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\HttpKernel\Controller\ArgumentResolver; use Stenope\Bundle\ContentManagerInterface; use Symfony\Compone...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Exception/ContentNotFoundException.php
src/Exception/ContentNotFoundException.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Exception; class ContentNotFoundException extends \InvalidArgumentException implements ExceptionInterfa...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Exception/ExceptionInterface.php
src/Exception/ExceptionInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Exception; /** * Marker interface for all the meaningful exceptions from the Stenope package */ inter...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Exception/RuntimeException.php
src/Exception/RuntimeException.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Exception; /** * Generic Stenope exception for runtime issues. */ class RuntimeException extends \Run...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/TableOfContent/TableOfContent.php
src/TableOfContent/TableOfContent.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\TableOfContent; /** * @implements \IteratorAggregate<Headline> */ class TableOfContent extends \Array...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/TableOfContent/Headline.php
src/TableOfContent/Headline.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\TableOfContent; class Headline implements \JsonSerializable { public int $level; public ?string...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/TableOfContent/CrawlerTableOfContentGenerator.php
src/TableOfContent/CrawlerTableOfContentGenerator.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\TableOfContent; use Symfony\Component\DomCrawler\Crawler; class CrawlerTableOfContentGenerator { p...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/HttpFoundation/ContentRequest.php
src/HttpFoundation/ContentRequest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\HttpFoundation; use Symfony\Component\HttpFoundation\Request; /** * A request with the base url expli...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Behaviour/HighlighterInterface.php
src/Behaviour/HighlighterInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Behaviour; interface HighlighterInterface { /** * Highlight the given code */ public ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Behaviour/ContentManagerAwareTrait.php
src/Behaviour/ContentManagerAwareTrait.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Behaviour; use Stenope\Bundle\ContentManagerInterface; /** * @see ContentManagerAwareInterface */ tr...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Behaviour/HtmlCrawlerManagerInterface.php
src/Behaviour/HtmlCrawlerManagerInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Behaviour; use Stenope\Bundle\Content; use Symfony\Component\DomCrawler\Crawler; /** * Manager for ge...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Behaviour/ProcessorInterface.php
src/Behaviour/ProcessorInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Behaviour; use Stenope\Bundle\Content; interface ProcessorInterface { /** * Apply modificatio...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Behaviour/ContentManagerAwareInterface.php
src/Behaviour/ContentManagerAwareInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Behaviour; use Stenope\Bundle\ContentManagerInterface; interface ContentManagerAwareInterface { /*...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Attribute/SuggestedDebugQuery.php
src/Attribute/SuggestedDebugQuery.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Attribute; #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)] class SuggestedDebugQuer...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Decoder/HtmlDecoder.php
src/Decoder/HtmlDecoder.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Decoder; use Symfony\Component\DomCrawler\Crawler; use Symfony\Component\Serializer\Encoder\DecoderInte...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Decoder/MarkdownDecoder.php
src/Decoder/MarkdownDecoder.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Decoder; use Stenope\Bundle\Service\Parsedown; use Symfony\Component\Serializer\Encoder\DecoderInterfac...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/ReversibleContentProviderInterface.php
src/Provider/ReversibleContentProviderInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider; use Stenope\Bundle\Content; use Stenope\Bundle\ReverseContent\Context; interface ReversibleC...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/ContentProviderInterface.php
src/Provider/ContentProviderInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider; use Stenope\Bundle\Content; interface ContentProviderInterface { /** * @return iter...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/LocalFilesystemProvider.php
src/Provider/LocalFilesystemProvider.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider; use Stenope\Bundle\Content; use Stenope\Bundle\Provider\Factory\LocalFilesystemProviderFactor...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/Factory/ContentProviderFactory.php
src/Provider/Factory/ContentProviderFactory.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider\Factory; use Stenope\Bundle\Provider\ContentProviderInterface; /** * Choose the first matchi...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/Factory/LocalFilesystemProviderFactory.php
src/Provider/Factory/LocalFilesystemProviderFactory.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider\Factory; use Stenope\Bundle\Provider\ContentProviderInterface; use Stenope\Bundle\Provider\Loc...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Provider/Factory/ContentProviderFactoryInterface.php
src/Provider/Factory/ContentProviderFactoryInterface.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Provider\Factory; use Stenope\Bundle\Provider\ContentProviderInterface; /** * A factory to instantiat...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/EventListener/Informator.php
src/EventListener/Informator.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\EventListener; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\Ht...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/EventListener/SitemapListener.php
src/EventListener/SitemapListener.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\EventListener; use Stenope\Bundle\Builder\Sitemap; use Stenope\Bundle\Routing\RouteInfoCollection; use ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/AssetUtils.php
src/Service/AssetUtils.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; use Symfony\Component\Asset\Packages; class AssetUtils { private Packages $assets; p...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/SharedHtmlCrawlerManager.php
src/Service/SharedHtmlCrawlerManager.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Content; use Symf...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/NaiveHtmlCrawlerManager.php
src/Service/NaiveHtmlCrawlerManager.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; use Stenope\Bundle\Behaviour\HtmlCrawlerManagerInterface; use Stenope\Bundle\Content; use Symf...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/Parsedown.php
src/Service/Parsedown.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; use Parsedown as BaseParsedown; /** * Parsedown as a service */ class Parsedown extends Bas...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/HtmlUtils.php
src/Service/HtmlUtils.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; class HtmlUtils { /** * Add class to the given element */ public static func...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/ContentUtils.php
src/Service/ContentUtils.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service; use Symfony\Component\PropertyAccess\PropertyAccess; use Symfony\Component\PropertyAccess\Prop...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Service/Git/LastModifiedFetcher.php
src/Service/Git/LastModifiedFetcher.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Service\Git; use Psr\Log\LoggerInterface; use Psr\Log\NullLogger; use Symfony\Component\Process\Excepti...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Command/StopwatchHelperTrait.php
src/Command/StopwatchHelperTrait.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Command; use Symfony\Component\Console\Helper\Helper; use Symfony\Component\Stopwatch\StopwatchEvent; ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Command/DebugCommand.php
src/Command/DebugCommand.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Command; use Stenope\Bundle\Attribute\SuggestedDebugQuery; use Stenope\Bundle\ContentManagerInterface; ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/src/Command/BuildCommand.php
src/Command/BuildCommand.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Command; use Stenope\Bundle\Builder; use Symfony\Component\Console\Command\Command; use Symfony\Compone...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/bootstrap.php
tests/bootstrap.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ $loader = require __DIR__ . '/../vendor/autoload.php'; const PACKAGE_ROOT_DIR = __DIR__ . '/..'; const FIXTURES_DIR = __DIR__ . ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Integration/ContentArgumentResolverTest.php
tests/Integration/ContentArgumentResolverTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Integration; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ContentArgumentResolverT...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Integration/ResolvedLinkedContentsTest.php
tests/Integration/ResolvedLinkedContentsTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Integration; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ResolvedLinkedContentsTe...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Integration/TableOfContentTest.php
tests/Integration/TableOfContentTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Integration; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class TableOfContentTest exten...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Integration/BuildTest.php
tests/Integration/BuildTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Integration; use Psr\Log\Test\TestLogger; use Symfony\Bundle\FrameworkBundle\Console\Application;...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Integration/Command/DebugCommandTest.php
tests/Integration/Command/DebugCommandTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Integration\Command; use App\Model\Author; use App\Model\Recipe; use Composer\InstalledVersions; ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Kernel.php
tests/fixtures/app/src/Kernel.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; use Symfony\Component\DependencyInjection\Loader\Conf...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Model/Author.php
tests/fixtures/app/src/Model/Author.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Model; class Author { public string $slug; public string $firstname; public string $lastname; publ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Model/Recipe.php
tests/fixtures/app/src/Model/Recipe.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Model; use Stenope\Bundle\TableOfContent\TableOfContent; class Recipe { public string $title; public ?str...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Controller/NoIndexController.php
tests/fixtures/app/src/Controller/NoIndexController.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Routing\Annota...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Controller/DefaultController.php
tests/fixtures/app/src/Controller/DefaultController.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Controller/AuthorsController.php
tests/fixtures/app/src/Controller/AuthorsController.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Controller; use App\Model\Author; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Co...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/src/Controller/RecipesController.php
tests/fixtures/app/src/Controller/RecipesController.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace App\Controller; use App\Model\Recipe; use Stenope\Bundle\ContentManager; use Stenope\Bundle\HttpKernel\Controller\Argu...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/public/index.php
tests/fixtures/app/public/index.php
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/app/config/bundles.php
tests/fixtures/app/config/bundles.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ return [ Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], Symfony\Bundle\TwigBundle\TwigBundle::...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/fixtures/Unit/Service/Git/bin/git.php
tests/fixtures/Unit/Service/Git/bin/git.php
#!/usr/bin/env php <?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ /** * @see Stenope\Bundle\Tests\Unit\Service\Git\LastModifiedFetcherTest */ $path = end($argv); switch ($pa...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/ContentManagerTest.php
tests/Unit/ContentManagerTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit; use PHPUnit\Framework\TestCase; use Prophecy\Argument; use Prophecy\PhpUnit\ProphecyTrait; ...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/Routing/ContentUrlResolverTest.php
tests/Unit/Routing/ContentUrlResolverTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\Routing; use PHPUnit\Framework\TestCase; use Prophecy\PhpUnit\ProphecyTrait; use Stenope\Bun...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/Processor/ExtractTitleFromHtmlContentProcessorTest.php
tests/Unit/Processor/ExtractTitleFromHtmlContentProcessorTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\Processor; use PHPUnit\Framework\TestCase; use Stenope\Bundle\Content; use Stenope\Bundle\Pr...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/Processor/ResolveContentLinksProcessorTest.php
tests/Unit/Processor/ResolveContentLinksProcessorTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\Processor; use PHPUnit\Framework\TestCase; use Prophecy\PhpUnit\ProphecyTrait; use Stenope\B...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/Processor/LastModifiedProcessorTest.php
tests/Unit/Processor/LastModifiedProcessorTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\Processor; use PHPUnit\Framework\TestCase; use Prophecy\Argument; use Prophecy\PhpUnit\Proph...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/ExpressionLanguage/ExpressionTest.php
tests/Unit/ExpressionLanguage/ExpressionTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\ExpressionLanguage; use PHPUnit\Framework\TestCase; use function Stenope\Bundle\ExpressionLa...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false
StenopePHP/Stenope
https://github.com/StenopePHP/Stenope/blob/eda6b30e7280aec07e7970f708b9246ac4217cc2/tests/Unit/DependencyInjection/ConfigurationTest.php
tests/Unit/DependencyInjection/ConfigurationTest.php
<?php /* * This file is part of the "StenopePHP/Stenope" bundle. * * @author Thomas Jarrand <thomas.jarrand@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ namespace Stenope\Bundle\Tests\Unit\DependencyInjection; use PHPUnit\Framework\TestCase; use Stenope\Bundle\DependencyInjection\...
php
MIT
eda6b30e7280aec07e7970f708b9246ac4217cc2
2026-01-05T05:19:06.407340Z
false