diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8197f6a..0f862be 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,16 +17,16 @@ concurrency: jobs: cs: - uses: phpalto/.github/.github/workflows/CS.yml@main + uses: altophp/.github/.github/workflows/CS.yml@main sa: - uses: phpalto/.github/.github/workflows/SA.yml@main + uses: altophp/.github/.github/workflows/SA.yml@main tests: strategy: fail-fast: false matrix: php: ['8.3', '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 }} diff --git a/README.md b/README.md index 10fdbb1..bf568b6 100644 --- a/README.md +++ b/README.md @@ -12,15 +12,15 @@ composer require alto/commonmark | Extension | Description | GitHub | Packagist | |-----------|-------------|--------|-----------| -| CodeBlockTitle | Titled fenced code blocks rendered as `
` | [GitHub](https://github.com/PhpAlto/commonmark-code-block-title) | [Packagist](https://packagist.org/packages/alto/commonmark-code-block-title) | -| ContentSlicer | Wraps heading sections in semantic `
` elements | [GitHub](https://github.com/PhpAlto/commonmark-content-slicer) | [Packagist](https://packagist.org/packages/alto/commonmark-content-slicer) | -| HeadingLevel | Shift or remap heading levels across the document | [GitHub](https://github.com/PhpAlto/commonmark-heading-level) | [Packagist](https://packagist.org/packages/alto/commonmark-heading-level) | -| Import | Import file contents into code blocks with line ranges | [GitHub](https://github.com/PhpAlto/commonmark-import) | [Packagist](https://packagist.org/packages/alto/commonmark-import) | -| Include | Inline-include Markdown fragments for doc composition | [GitHub](https://github.com/PhpAlto/commonmark-include) | [Packagist](https://packagist.org/packages/alto/commonmark-include) | -| LinkRewriter | Rewrite links & images via base URI, map, or regex | [GitHub](https://github.com/PhpAlto/commonmark-link-rewriter) | [Packagist](https://packagist.org/packages/alto/commonmark-link-rewriter) | -| Source | Embed source files with line numbers and highlighting | [GitHub](https://github.com/PhpAlto/commonmark-source) | [Packagist](https://packagist.org/packages/alto/commonmark-source) | -| TableOfContents | Auto-generated TOC from headings via `@toc` | [GitHub](https://github.com/PhpAlto/commonmark-table-of-contents) | [Packagist](https://packagist.org/packages/alto/commonmark-table-of-contents) | -| Tabs | Accessible ARIA tabbed UI from a simple `@tabs` directive | [GitHub](https://github.com/PhpAlto/commonmark-tabs) | [Packagist](https://packagist.org/packages/alto/commonmark-tabs) | +| CodeBlockTitle | Titled fenced code blocks rendered as `
` | [GitHub](https://github.com/altophp/commonmark-code-block-title) | [Packagist](https://packagist.org/packages/alto/commonmark-code-block-title) | +| ContentSlicer | Wraps heading sections in semantic `
` elements | [GitHub](https://github.com/altophp/commonmark-content-slicer) | [Packagist](https://packagist.org/packages/alto/commonmark-content-slicer) | +| HeadingLevel | Shift or remap heading levels across the document | [GitHub](https://github.com/altophp/commonmark-heading-level) | [Packagist](https://packagist.org/packages/alto/commonmark-heading-level) | +| Import | Import file contents into code blocks with line ranges | [GitHub](https://github.com/altophp/commonmark-import) | [Packagist](https://packagist.org/packages/alto/commonmark-import) | +| Include | Inline-include Markdown fragments for doc composition | [GitHub](https://github.com/altophp/commonmark-include) | [Packagist](https://packagist.org/packages/alto/commonmark-include) | +| LinkRewriter | Rewrite links & images via base URI, map, or regex | [GitHub](https://github.com/altophp/commonmark-link-rewriter) | [Packagist](https://packagist.org/packages/alto/commonmark-link-rewriter) | +| Source | Embed source files with line numbers and highlighting | [GitHub](https://github.com/altophp/commonmark-source) | [Packagist](https://packagist.org/packages/alto/commonmark-source) | +| TableOfContents | Auto-generated TOC from headings via `@toc` | [GitHub](https://github.com/altophp/commonmark-table-of-contents) | [Packagist](https://packagist.org/packages/alto/commonmark-table-of-contents) | +| Tabs | Accessible ARIA tabbed UI from a simple `@tabs` directive | [GitHub](https://github.com/altophp/commonmark-tabs) | [Packagist](https://packagist.org/packages/alto/commonmark-tabs) | ## Extensions diff --git a/composer.json b/composer.json index c15f614..eb80007 100644 --- a/composer.json +++ b/composer.json @@ -27,10 +27,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark#readme" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark#readme" }, "funding": [ { diff --git a/docs/CodeBlockTitle.md b/docs/CodeBlockTitle.md index 599063c..df57255 100644 --- a/docs/CodeBlockTitle.md +++ b/docs/CodeBlockTitle.md @@ -81,5 +81,5 @@ The output uses stable hooks: `.code-block.has-title`, `.code-title`, and a --- -> **This package is part of the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +> **This package is part of the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/ContentSlicer.md b/docs/ContentSlicer.md index 2a9de6f..3245a88 100644 --- a/docs/ContentSlicer.md +++ b/docs/ContentSlicer.md @@ -119,5 +119,5 @@ Content that appears before the first wrapped heading stays at the document root --- -> **This package is part of the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +> **This package is part of the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/HeadingLevel.md b/docs/HeadingLevel.md index cbf4626..eaa2f92 100644 --- a/docs/HeadingLevel.md +++ b/docs/HeadingLevel.md @@ -112,5 +112,5 @@ Levels missing from the map keep their original value. --- -> **This package is part of the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +> **This package is part of the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/Import.md b/docs/Import.md index f211f2f..1b7b041 100644 --- a/docs/Import.md +++ b/docs/Import.md @@ -114,5 +114,5 @@ Errors render as an inline `
` so the rest of the page remains intact: --- > **This package is part of -the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/Include.md b/docs/Include.md index c141093..c78e4f8 100644 --- a/docs/Include.md +++ b/docs/Include.md @@ -134,5 +134,5 @@ All paths are resolved with `realpath()` and validated against `basePath`: --- > **This package is part of -the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/LinkRewriter.md b/docs/LinkRewriter.md index d007cc3..56ce2ad 100644 --- a/docs/LinkRewriter.md +++ b/docs/LinkRewriter.md @@ -108,5 +108,5 @@ Config `['base_uri' => 'https://mysite.com']`: --- -> **This package is part of the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +> **This package is part of the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/README.md b/docs/README.md index 39b6d7d..8fa226e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -60,4 +60,4 @@ $environment->addExtension(new TabsExtension()); --- -[Main README](../README.md) · [league/commonmark](https://commonmark.thephpleague.com/) · [GitHub](https://github.com/PhpAlto/commonmark) +[Main README](../README.md) · [league/commonmark](https://commonmark.thephpleague.com/) · [GitHub](https://github.com/altophp/commonmark) diff --git a/docs/Source.md b/docs/Source.md index 8879cc6..2a7863d 100644 --- a/docs/Source.md +++ b/docs/Source.md @@ -150,5 +150,5 @@ All paths are resolved with `realpath()` and validated against `basePath`: --- > **This package is part of -the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/TableOfContents.md b/docs/TableOfContents.md index 1c26318..a1739b2 100644 --- a/docs/TableOfContents.md +++ b/docs/TableOfContents.md @@ -142,5 +142,5 @@ Heading IDs are generated by slugifying the heading text: --- > **This package is part of -the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/docs/Tabs.md b/docs/Tabs.md index 98d9837..0725540 100644 --- a/docs/Tabs.md +++ b/docs/Tabs.md @@ -151,5 +151,5 @@ The extension generates full WAI-ARIA markup: --- > **This package is part of -the [alto/commonmark](https://github.com/PhpAlto/commonmark) monorepo.** -> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/PhpAlto/commonmark** +the [alto/commonmark](https://github.com/altophp/commonmark) monorepo.** +> This repository is a read-only split. To file issues, open pull requests, or contribute, use the main repository: **https://github.com/altophp/commonmark** diff --git a/src/Extension/CodeBlockTitle/README.md b/src/Extension/CodeBlockTitle/README.md index 8e286ff..f83ac7e 100644 --- a/src/Extension/CodeBlockTitle/README.md +++ b/src/Extension/CodeBlockTitle/README.md @@ -47,12 +47,12 @@ console.log('Hello'); ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/CodeBlockTitle/composer.json b/src/Extension/CodeBlockTitle/composer.json index 975a9a5..6e43ff8 100644 --- a/src/Extension/CodeBlockTitle/composer.json +++ b/src/Extension/CodeBlockTitle/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/CodeBlockTitle.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/CodeBlockTitle.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/ContentSlicer/README.md b/src/Extension/ContentSlicer/README.md index 33322d5..f21981a 100644 --- a/src/Extension/ContentSlicer/README.md +++ b/src/Extension/ContentSlicer/README.md @@ -47,12 +47,12 @@ Details ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/ContentSlicer/composer.json b/src/Extension/ContentSlicer/composer.json index f9c9bfc..a514a69 100644 --- a/src/Extension/ContentSlicer/composer.json +++ b/src/Extension/ContentSlicer/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/ContentSlicer.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/ContentSlicer.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/HeadingLevel/README.md b/src/Extension/HeadingLevel/README.md index 0dbd815..1788cb4 100644 --- a/src/Extension/HeadingLevel/README.md +++ b/src/Extension/HeadingLevel/README.md @@ -43,12 +43,12 @@ No custom markdown directive is required; the extension processes standard headi ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/HeadingLevel/composer.json b/src/Extension/HeadingLevel/composer.json index 3914095..54296fd 100644 --- a/src/Extension/HeadingLevel/composer.json +++ b/src/Extension/HeadingLevel/composer.json @@ -19,10 +19,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/HeadingLevel.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/HeadingLevel.md" }, "funding": [ { @@ -42,7 +42,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/Import/README.md b/src/Extension/Import/README.md index ac3798c..1d9f8c8 100644 --- a/src/Extension/Import/README.md +++ b/src/Extension/Import/README.md @@ -45,12 +45,12 @@ $environment->addExtension(new ImportExtension(__DIR__ . '/docs')); ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/Import/composer.json b/src/Extension/Import/composer.json index 853f786..0c73da6 100644 --- a/src/Extension/Import/composer.json +++ b/src/Extension/Import/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/Import.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/Import.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/Include/README.md b/src/Extension/Include/README.md index ae90f35..ddb2c43 100644 --- a/src/Extension/Include/README.md +++ b/src/Extension/Include/README.md @@ -45,12 +45,12 @@ $environment->addExtension(new IncludeExtension(__DIR__ . '/docs')); ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/Include/composer.json b/src/Extension/Include/composer.json index b2acfdc..27c11d2 100644 --- a/src/Extension/Include/composer.json +++ b/src/Extension/Include/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/Include.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/Include.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/LinkRewriter/README.md b/src/Extension/LinkRewriter/README.md index ec2e326..8815052 100644 --- a/src/Extension/LinkRewriter/README.md +++ b/src/Extension/LinkRewriter/README.md @@ -44,12 +44,12 @@ No custom markdown directive is required; standard links/images are rewritten du ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/LinkRewriter/composer.json b/src/Extension/LinkRewriter/composer.json index 7e2f20f..a33a88c 100644 --- a/src/Extension/LinkRewriter/composer.json +++ b/src/Extension/LinkRewriter/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/LinkRewriter.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/LinkRewriter.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/Source/README.md b/src/Extension/Source/README.md index 3c09349..280f351 100644 --- a/src/Extension/Source/README.md +++ b/src/Extension/Source/README.md @@ -44,12 +44,12 @@ $environment->addExtension(new SourceExtension(__DIR__)); ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/Source/composer.json b/src/Extension/Source/composer.json index 9a01e2f..4cb796f 100644 --- a/src/Extension/Source/composer.json +++ b/src/Extension/Source/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/Source.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/Source.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/TableOfContents/README.md b/src/Extension/TableOfContents/README.md index f134c91..31ceabb 100644 --- a/src/Extension/TableOfContents/README.md +++ b/src/Extension/TableOfContents/README.md @@ -51,12 +51,12 @@ $environment->addExtension(new TableOfContentsExtension()); ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/TableOfContents/composer.json b/src/Extension/TableOfContents/composer.json index 397375f..f06e18c 100644 --- a/src/Extension/TableOfContents/composer.json +++ b/src/Extension/TableOfContents/composer.json @@ -21,10 +21,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/TableOfContents.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/TableOfContents.md" }, "funding": [ { @@ -44,7 +44,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } } diff --git a/src/Extension/Tabs/README.md b/src/Extension/Tabs/README.md index 45d731a..b7e7644 100644 --- a/src/Extension/Tabs/README.md +++ b/src/Extension/Tabs/README.md @@ -56,12 +56,12 @@ composer require vendor/package ## Development -This extension is actively developed in the [`alto/commonmark`](https://github.com/PhpAlto/commonmark) monorepo. +This extension is actively developed in the [`alto/commonmark`](https://github.com/altophp/commonmark) monorepo. -- [Report a bug](https://github.com/PhpAlto/commonmark/issues/new?labels=bug) -- [Suggest a feature](https://github.com/PhpAlto/commonmark/issues/new?labels=enhancement) -- [Open a Pull Request](https://github.com/PhpAlto/commonmark/pulls) +- [Report a bug](https://github.com/altophp/commonmark/issues/new?labels=bug) +- [Suggest a feature](https://github.com/altophp/commonmark/issues/new?labels=enhancement) +- [Open a Pull Request](https://github.com/altophp/commonmark/pulls) ## License -MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/PhpAlto) +MIT License -- [Simon André](https://smnandre.dev) & [Alto](https://github.com/altophp) diff --git a/src/Extension/Tabs/composer.json b/src/Extension/Tabs/composer.json index ff92d08..4edb6d1 100644 --- a/src/Extension/Tabs/composer.json +++ b/src/Extension/Tabs/composer.json @@ -20,10 +20,10 @@ "email": "smn.andre@gmail.com" } ], - "homepage": "https://github.com/PhpAlto/commonmark", + "homepage": "https://github.com/altophp/commonmark", "support": { - "issues": "https://github.com/PhpAlto/commonmark/issues", - "docs": "https://github.com/PhpAlto/commonmark/blob/main/docs/Tabs.md" + "issues": "https://github.com/altophp/commonmark/issues", + "docs": "https://github.com/altophp/commonmark/blob/main/docs/Tabs.md" }, "funding": [ { @@ -43,7 +43,7 @@ "extra": { "thanks": { "name": "alto/commonmark", - "url": "https://github.com/PhpAlto/commonmark" + "url": "https://github.com/altophp/commonmark" } } }