Skip to content
This repository has been archived by the owner on Apr 4, 2020. It is now read-only.

Commit

Permalink
Update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell authored and hason committed Jul 11, 2019
1 parent 3d7d3d0 commit d5e0b0c
Show file tree
Hide file tree
Showing 17 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .php_cs
@@ -1,7 +1,7 @@
<?php

$header = <<<EOF
This is part of the webuni/commonmark-table-extension package.
This is part of the league/commonmark-ext-table package.
(c) Martin Hasoň <martin.hason@gmail.com>
(c) Webuni s.r.o. <info@webuni.cz>
Expand Down
10 changes: 5 additions & 5 deletions README.md
@@ -1,10 +1,10 @@
CommonMark Table Extension
==========================

[![Latest Version](https://img.shields.io/packagist/v/webuni/commonmark-table-extension.svg?style=flat-square)](https://packagist.org/packages/webuni/commonmark-table-extension)
[![Build Status](https://img.shields.io/travis/webuni/commonmark-table-extension.svg?style=flat-square)](https://travis-ci.org/webuni/commonmark-table-extension)
[![Code Quality](https://img.shields.io/scrutinizer/g/webuni/commonmark-table-extension.svg?style=flat-square)](https://scrutinizer-ci.com/g/webuni/commonmark-table-extension/code-structure)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/webuni/commonmark-table-extension.svg?style=flat-square)](https://scrutinizer-ci.com/g/webuni/commonmark-table-extension)
[![Latest Version](https://img.shields.io/packagist/v/league/commonmark-ext-table.svg?style=flat-square)](https://packagist.org/packages/league/commonmark-ext-table)
[![Build Status](https://img.shields.io/travis/league/commonmark-ext-table.svg?style=flat-square)](https://travis-ci.org/league/commonmark-ext-table)
[![Code Quality](https://img.shields.io/scrutinizer/g/league/commonmark-ext-table.svg?style=flat-square)](https://scrutinizer-ci.com/g/league/commonmark-ext-table/code-structure)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/league/commonmark-ext-table.svg?style=flat-square)](https://scrutinizer-ci.com/g/league/commonmark-ext-table)

The Table extension adds the ability to create tables in CommonMark documents.

Expand All @@ -13,7 +13,7 @@ Installation

This project can be installed via Composer:

composer require webuni/commonmark-table-extension
composer require league/commonmark-ext-table

Usage
-----
Expand Down
8 changes: 4 additions & 4 deletions composer.json
@@ -1,9 +1,9 @@
{
"name": "webuni/commonmark-table-extension",
"name": "league/commonmark-ext-table",
"type": "commonmark-extension",
"description": "The table extension for CommonMark PHP implementation",
"keywords": ["markdown","table","commonmark"],
"homepage": "https://github.com/webuni/commonmark-table-extension",
"description": "Table extension for league/commonmark",
"keywords": ["markdown", "commonmark", "extension", "table"],
"homepage": "https://github.com/thephpleague/commonmark-ext-table",
"license": "MIT",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -11,7 +11,7 @@
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Webuni Commonmark Table Extension Test Suite">
<testsuite name="Commonmark Table Extension Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion src/Table.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableCaption.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableCaptionRenderer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableCell.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableCellRenderer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableExtension.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableParser.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableRenderer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableRow.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableRowRenderer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableRows.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion src/TableRowsRenderer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/LocalDataTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/*
* This is part of the webuni/commonmark-table-extension package.
* This is part of the league/commonmark-ext-table package.
*
* (c) Martin Hasoň <martin.hason@gmail.com>
* (c) Webuni s.r.o. <info@webuni.cz>
Expand Down

0 comments on commit d5e0b0c

Please sign in to comment.