Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ concurrency:
jobs:

cs:
uses: phpalto/.github/.github/workflows/CS.yml@main
uses: altophp/.github/.github/workflows/CS.yml@main
with:
php-version: '8.4'
# composer-validate: true
# php-cs-fixer-args: '--diff --dry-run'

sa:
uses: phpalto/.github/.github/workflows/SA.yml@main
uses: altophp/.github/.github/workflows/SA.yml@main
with:
php-version: '8.4'
# phpstan-args: 'analyse --no-progress --memory-limit=-1'
Expand All @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
php: ['8.4', '8.5']
uses: phpalto/.github/.github/workflows/tests.yml@main
uses: altophp/.github/.github/workflows/tests.yml@main
with:
php-version: ${{ matrix.php }}
# phpunit-args: '--colors=never'
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Alto Twig Code Highlight

Twig extension for [alto/code-highlight](https://github.com/phpalto/code-highlight) that adds a block tag and a filter for rendering syntax-highlighted code in templates.
Twig extension for [alto/code-highlight](https://github.com/altophp/code-highlight) that adds a block tag and a filter for rendering syntax-highlighted code in templates.

```twig
{% code_highlight %}
Expand Down Expand Up @@ -68,7 +68,7 @@ Theme:

`theme` is not passable as a tag argument; configure the `Highlighter` theme when registering the extension.

See theme docs in the core library: <https://github.com/phpalto/code-highlight>.
See theme docs in the core library: <https://github.com/altophp/code-highlight>.

## Filter `|code_highlight`

Expand Down Expand Up @@ -97,13 +97,13 @@ Theme:

`theme` is not passable as a filter argument; configure the `Highlighter` theme when registering the extension.

See theme docs in the core library: <https://github.com/phpalto/code-highlight>.
See theme docs in the core library: <https://github.com/altophp/code-highlight>.

## Contributing

Contributions are welcome! Please feel free to [submit issues](https://github.com/phpalto/twig-code-highlight/issues)
or [pull requests](https://github.com/phpalto/twig-code-highlight/pulls).
Contributions are welcome! Please feel free to [submit issues](https://github.com/altophp/twig-code-highlight/issues)
or [pull requests](https://github.com/altophp/twig-code-highlight/pulls).

## License

Released by the [Alto project](https://github.com/phpalto) under the [MIT License](LICENSE).
Released by the [Alto project](https://github.com/altophp) under the [MIT License](LICENSE).
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
],
"require": {
"php": "^8.4",
"alto/code-highlight": "*@dev",
"twig/twig": "^3.23"
"alto/code-highlight": "dev-main",
"twig/twig": "^3.28"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
Expand Down
Loading